IF EXCEPTION:  ACKNOWLEDGEMENT (ACK)
When encountering an error or advisory message that says
"Press any key to continue," such as when a global ^QA operation 
is completed:

     IfException
     ACK: Key("{Enter}")
     stop
     End IfException

=====================================================
IF EXCEPTION:  NO CURSOR MOVEMENT (NCM)
When a macro should halt when it reaches the end of a file (such as a 
recursive macro that performs a ^L or cursor movement command)

     IfException
     NCM: Key ("{Esc}")
     stop
     End IfException

=====================================================
PAUSE FOR INPUT
To pause while the users enters a string of information (such as the text to 
search for).

Syntax:

     PauseForInput ("input termination key",'Message in Title Line')

Sample:
     PauseForInput ("{Enter}",'Enter Search Text')

=====================================================
PAUSE FOR KEY
To pause while the user enters a single keystroke (such as "Y" or "N", or a 
character to be jumped to with ^QG):

Syntax:
     PauseForKey()

Sample:
     Sub Main
     Key("^Qg")
     PauseForKey ()
     End Sub
