qbasic.hlp (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
  Contents  Index  Back
──────────────────────────────────────────────────────────────────────────────
Resumes program execution after an error-handling routine.
 
RESUME [{line | NEXT}]
 
    ■ line    The label or number of the line where execution resumes. If
              line is 0 or omitted, execution resumes with the statement
              that caused the error.
    ■ NEXT    Resumes execution at the statement following the statement
              that caused the error.
 
Example
 
See Also    ERROR    ON ERROR