alertnoyes
TEXT

The alertnoyes statement displays a modal alert window with a message and two buttons: No and Yes.


Parameters

This statement has one parameter:

text – is the message to display.


Description

The alertyesno statement is similar to the message statement but instead of a single Ok button, both No and Yes buttons are displayed (No is the default.) Afterwards, the name of the button that was clicked can be accessed with the info(“dialogtrigger”) function.

alertnoyes "Do you want to continue?"
if info("dialogtrigger") = "No"
    stop
endif
...
...
...

See Also


History

VersionStatusNotes
10.0UpdatedCarried over from Panorama 6.0 but does not have 255 character limit, and automatically grows in height to accomodate the specified text.