errors

M

Michael

Is there a way of writing custom error messages for all error codes that ever
show up. For instance, rather than going into each form and each button, can
I just make a module/macro, etc. that says when code ### comes up, then give
the custom error message and not the default one? If so, how would I go about
doing that....Thanks!
 
J

John W. Vinson

Is there a way of writing custom error messages for all error codes that ever
show up. For instance, rather than going into each form and each button, can
I just make a module/macro, etc. that says when code ### comes up, then give
the custom error message and not the default one? If so, how would I go about
doing that....Thanks!

You can use the Form's Error event, but AFAIK there's no way to trap all
errors wherever they might occur without code on each possibly
error-generating object. You'll be astonished at the size of this project...
there are a LOT of possible errors.

John W. Vinson [MVP]
 
Top