Explanation
RESUME Statement
Resumes program execution after an error-handling routine.Worth knowing
Useful and cross-version information about the programming environments of QBasic, QuickBasic and Visual Basic for DOS.
Useful and cross-version information about the programming environments of QBasic, QuickBasic and Visual Basic for DOS.
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. |
' For an example, see "ON ERROR" Statement