HTBasic Help
×
Menu
Index

ERROR SUBEXIT

Returns subprogram execution to the line following the most recent error.
 
 ERROR SUBEXIT
 
Usage:
ERROR SUBEXIT
IF Done THEN ERROR SUBEXIT
 
Example:           ERROR SUBEXIT.BAS
 
Description:
ERROR SUBEXIT should only be used in connection with ON ERROR CALL. A regular SUBEXIT causes the line which generated the error to be re-executed. ERROR SUBEXIT skips the error line and continues execution with the line following the line in error.
 
See Also: