hi,
How can I add a message afterinsert record?
i try
if (sc_btn_insert)
{
sc_message(“Insert record successful”);
}
but dont work.
hi,
How can I add a message afterinsert record?
i try
if (sc_btn_insert)
{
sc_message(“Insert record successful”);
}
but dont work.
Re: Message afterupdate
I think sc_message ("…") alone is enough, if you do in the event onAfterInsert placing them.
IF (sc_btn_insert) … returns true or false. This is useful only in OnValidate events. As are so called when any button is clicked. You can thus react to the click of each button.
If you want to output a success message after the insert, the insert button was already pressed and executed the DML statement already … So it all happened already, so why even ask if you wanted it to happen …