The help tries to explain what is happening. It is a bit heavy going but the information is all there. Basically if an exception occurs in a Sub and is not handled by ErrorLabel then the user will be presented with an error message to halt or continue. So the only place you can handle an exception is in the Sub where it occurs. If the Sub is not doing anything that might cause an exception there is no need for an ErrorLabel statement in that Sub.
__________________
Sorry, but I don't answer questions by PM or email.
Please post your queries in the forum.
I mean: when I put an exception catcher in a Sub, I can put into normal function AND into events (like, for example, a click event)?
Yes, event Subs are normal Subs, there is nothing special about them and you can even call them like any other Sub, they don't only have to be run by an event.
__________________
Sorry, but I don't answer questions by PM or email.
Please post your queries in the forum.