Error Handling question
I have this set of code:
On error goto ErrorHand:
code 1...
code 1...
code 1...
On error goto 0
ErrorHand:
code...
Somewhere within the Code 1, there is a type mismatch error, but the program
doesn't go to ErrorHand, instead it goes debug window. Am I doing something
wrong?
|