How to show a message when user use copy button

Hi There,

Is there a way to show a message when a user uses a copy button in a single form?
When a user presses this button, scriptcase immedialtly shows the new record in a single page. but this is very confusing because it contains the same content as the original. users don’t get that.

Use macro sc_btn_copy to show a message when record is copied, in the OnInt or OnLoad event in the form.

if (sc_btn_copy)

{

    sc_message("Record copied successfully!");

}
1 Like

ah of course, thx @Vincenzo