Hi, everybody!

I’m dealing with errors using the command:
=====================
On error goto MyError
=====================
but I have the same module to deal with errors from various buttons.
I’ve tried to create a private sub called Private Sub MyError() and to call it from the various buttons, using the command:
=====================
On error call MyError
=====================
but it doesn’t work. I’ve tried to create just a Label called MyError, outside any Private Sub, but it doesn’t work either.
If I use the command - On Error Resume Next – it works ok with the error, but I’d like to be able to send the user a Msgbox also.
Any ideas on how to avoid creating a MyError label with the same commands in all the buttons click events?
Thanks in advance,
Roselene