J
JK
For many of my procedures I trap errors with On Error GoTo Handler. Would it
be best to add Resume Next to the Handler?
Sub ()
On Error GoTo Handler
be best to add Resume Next to the Handler?
Sub ()
On Error GoTo Handler
Code:
Exit Sub
Handler:
[whatever]
Resume Next
End Sub
Or is there a better approach? Thank you in advance.
Jim Kobzeff