Error Handling - On Error GoTo doesn't trap error successfully
One thing I would suggest ... in the error handling routine do you
have:
Goto xxx
OR
Resume xxx
If you have goto then the error routine will not catch a second error,
as it is technically still in the error handling step.
|