GUI.ShowMessage |
Top Previous Next |
Show a message dialog.
Syntax function GUI.ShowMessage(Msg: string): boolean
Alternative Names
Description Shows a message dialog with an OK button, synchronized with the main thread and halts execution until the user closes it.
Msg holds a message to be shown to the user.
The Return Value is TRUE.
See also
Example execute UDSBlock returns (str_value varchar(100)) as begin GUI.ShowMessage('click this to continue'); str_value = 'end of routine'; suspend; end |