Is there any macro for getting the action type in a form? For ex i want to know when a user is hitting the add new button and so on.
sc_btn_new
Available when the “Add New” button is clicked. Can be tested and used inside the ScriptCase events, allowing especific programmation in run time.
Ex. 1:
if (sc_btn_new)
{
{My_Date} = date(‘Y/m/d’);
}
Thank you sir.