What happens when an error is trapped (by goto LABEL) and then, while still handeling the error in the label, another error occurs?
Thanks.
Dan.
Printable View
What happens when an error is trapped (by goto LABEL) and then, while still handeling the error in the label, another error occurs?
Thanks.
Dan.
The error will be generated as normal, regardless of any error handling in the label section.
Regards
Chris
For generated as normal you can read: a messagebox is displayed, and when the user clicks OK the program is terminated. Inside an error handler, no error trapping is done. So you better don't make mistakes there.