G
Guest
Can I do the following:
On Error Goto A
.... statement1 ...
On Error Resume Next
.... statement2 ...
On Error Goto 0
.... statement3 ...
I want statement 1 to be caught by the first on error
I want statement 2 never to generate an on error
I want statement 3 to be caught by the first on error
On Error Goto A
.... statement1 ...
On Error Resume Next
.... statement2 ...
On Error Goto 0
.... statement3 ...
I want statement 1 to be caught by the first on error
I want statement 2 never to generate an on error
I want statement 3 to be caught by the first on error