Programming Reference Manual
 
Syntax
 
Resume label
-or-
Resume Next
 
Description
Form 1: Resume execution at label.
 
Form 2: Resume execution at the next statement.
 
Once an error has occurred, the error handler can use Resume to continue execution. The error handler must use Resume or Exit at the end.
 
Note: This instruction clears the Err and sets Error$ to null. 
See Also
 
Example
 
Sub Main
On Error GoTo X
Err.Raise 1
Debug.Print "RESUMING"
Exit Sub
 
X: Debug.Print "<span style='color: #004080; font-weight: bold;'>Err</span>=";Err
Resume Next
End Sub