Dear all,
I have an old (2003) access database with tons and tons of codes for different events and everything imaginable...
I have not used this database for about 10 years now, and now that I went back to it, lots of errors keep popping up because of changes and updates, etc...
For my error handling, I have:
So, I get this pop up window, giving me information on the error.
Is there any way I can have access take me to the exact place in the codes where the error has happened? I mean I want to know what was being done when the error happened.
Just a heads up: I have a big form opened, maximized, lots and lots of things happening in the background that make it difficult to know what exactly was being done when the error happened.
I have an old (2003) access database with tons and tons of codes for different events and everything imaginable...
I have not used this database for about 10 years now, and now that I went back to it, lots of errors keep popping up because of changes and updates, etc...
For my error handling, I have:
Code:
errorhandler:
MsgBox "Error: (" & Err.Number & ") " & Err.Description, vbCritical
Is there any way I can have access take me to the exact place in the codes where the error has happened? I mean I want to know what was being done when the error happened.
Just a heads up: I have a big form opened, maximized, lots and lots of things happening in the background that make it difficult to know what exactly was being done when the error happened.
Comment