

Use this form rather than On Error GoTo when accessing objects.ĭisables any enabled error handler in the current procedure. Specifies that when a run-time error occurs, control goes to the statement immediately following the statement where the error occurred and execution continues. The specified line must be in the same procedure as the On Error statement otherwise, a compile-time error occurs. If a run-time error occurs, control branches to line, making the error handler active. The line argument is any line label or line number. The On Error statement syntax can have any of the following forms: StatementĮnables the error-handling routine that starts at line specified in the required line argument. On Error GoTo line On Error Resume Next On Error GoTo 0 Enables an error-handling routine and specifies the location of the routine within a procedure can also be used to disable an error-handling routine.
