Programming Reference Manual
 
Syntax
 
Showwait(MsgText$ [, Hide])
 
Description
Shows a dialog, indicating to wait for a process to complete. The dialog is shown upfront, and the script will continu with the next statemant. The dialog remains visible until a second call is done with the optional Hide parameter set to TRUE.
 
 
Parameter
Description
MsgText$ 
The string that will be displayed
Hide
Optional. If True, the dialog will be removed from screen.
See Also
Example
Sub Main
 
ShowWait "Testing and waiting."
 
Wait 10
 
ShowWait "", True
 
End Sub