How to know form insert or update?

How to know the form is opened or loaded in inserting mode or updating mode?
When the form is opened, is there indicator sign is in update/insert? I am sure there is…because the title we can make different in update/insert mode…but where is variable of it?

Thx

Make some checks in your code for ‘sc_btn_new/insert/update etc’

Where is it?

Where is it what?


if(sc_btn_new) // new button was pressed
if(sc_btn_update) // update buttons was pressed
and so on

1 Like