GUI.ShowMessage

Top  Previous  Next

Show a message dialog.

 

Syntax

function GUI.ShowMessage(Msg: string): boolean

 

Alternative Names

ibec_ShowMessage

 

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

GUI.MessageDlg

 

Example

execute UDSBlock returns (str_value varchar(100))

as

begin
  /* show a dialog and wait for OK click */

  GUI.ShowMessage('click this to continue');

  str_value = 'end of routine';

  suspend;

end