bas7qck.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
  Syntax  Details  Example                 Contents  Index  Back
──────────────────────────────────────────────────────────────────────────────
RESUME { [0] | NEXT | line }
 
  ■ [0]     Program execution resumes with the statement that caused
            the error, or at the most recent call out of the
            error-handling procedure or module.
  ■ NEXT    Execution resumes with the statement immediately following
            the one that caused the error, or with the statement
            immediately following the most recent call out of the error-
            handling procedure or module.
  ■ line    Execution resumes at line, a label or a line number.
            The line must be within the same procedure (for local
            error handlers) or in the same module (for module-level
            error handlers).
 
See Also    ON ERROR