WAIT WINDOW
Shows a Message Window

 

 

 

            WAIT WINDOW <cMessage> [ NOWAIT ] | CLEAR

 

 

This command shows a window with a custom message and pauses program execution until a key is pressed or mouse is clicked.

 

When optional NOWAIT clause is specified program execution continue after message is displayed. To hide the message window WAIT CLEAR must be used.

 

This command must be used only after main window was activated.

 

                                          

      Sample 1:

 

            WAIT WINDOW "Press any key to continue"

 

      Sample 2:

 

            WAIT WINDOW "Processing" NOWAIT               

            <...>      

            WAIT CLEAR