qb45qck.hlp (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
RESUME Statement QuickSCREEN
  QuickSCREEN      Details      Example      Contents      Index
──────────────────────────────────────────────────────────────────────────────
RESUME - an error-trapping statement that continues program execution
         after an error-trapping routine has been invoked
 
Syntax
  RESUME [0]
  RESUME NEXT
  RESUME {linelabel | linenumber}
 
  ■ If the argument is omitted, or is 0, program execution resumes with
    the statement that caused the error
  ■ NEXT resumes program execution with the statement immediately following
    the one that caused the error
  ■ linelabel or linenumber are Details
 
See Also  ON ERROR