To properly display this page you need a browser with JavaScript support.
HTBasic Help
×
Menu
Index
Search
Search
Reference
HTBasic Keywords
ERROR RETURN - Returns program execution to the line following the most recent error.
Previous page
Next page
Print version
(c) TransEra Corp, 2021
To properly display this page you need a browser with JavaScript support.
ERROR RETURN
Returns program execution to the line following the most recent error.
ERROR RETURN
Usage:
IF Done THEN ERROR RETURN
Example:
ERROR RETURN.BAS
Description:
ERROR RETURN
should only be used in connection with
ON ERROR GOSUB
. A regular
RETURN
causes the line which generated the error to be re-executed.
ERROR RETURN
skips the line which generated the error and continues execution with the next line.
See Also:
CAUSE ERROR
,
CLEAR ERROR
,
ERRL
,
ERRLN
,
ERRM$
,
ERRN
,
ERROR SUBEXIT
,
OFF ERROR
,
ON ERROR
,