nca_popup_message_press
| Message Object Functions |
Presses a button in a popup window.
int nca_popup_message_press( LPCSTR name, LPCSTR button );
| name | The logical name of the message window. |
| button | The logical name of the button to press. |
The nca_popup_message_press function presses the specified button in a message window.
Return Values
Parameterization
The following variable can be parameterized using standard parameterization: name
Example
In the following example, the nca_popup_message_pressfunction presses the No button in the Decision window.
nca_menu_select_item("Toolbar", "Action;Close Form");
nca_message_box_press("Forms",1);
nca_popup_message_press("Decision", "No");

