Forum Discussion
Error Handling Question (dont see the debug button)
- Nov 18, 2022
Hi,
You are correct and this is one of the purposes of custom error handling. The normal user shall NOT get into the code behind an application.
Servus
Karl
************
Access News
Access DevCon
Hi,
It is by design that you don't see the debug button when you do your own error handling and message.
Workaround:
When your error MsgBox comes up you can press Ctrl+Break to get into the code editor and current error handler. If you have added a line with
Resume
to the end of your error handler, you can drag the yellow error arrow to this Resume and then press F8 to jump to the code line where the error occured.
Servus
Karl
************
Access News
Access DevCon
- Nov 18, 2022
Hi,
You are correct and this is one of the purposes of custom error handling. The normal user shall NOT get into the code behind an application.
Servus
Karl
************
Access News
Access DevCon- Tony2021Nov 18, 2022Steel ContributorAhh yes good pt. thank you sir!