PDA

View Full Version : any error causes crash



DBinPhilly
06-10-2018, 09:34 AM
I have one database that whenever an error is encountered, the database crashes. One is not given the option to ignore or debug. It just crashes.

I've looked in the options and see no nuclear option. Anyone know a work around or fix to this one?

Logit
06-10-2018, 09:49 AM
You could add the following at the beginning of your macros :


On Error Resume Next

Although having a more proper ERROR HANDLER would be in order.

DBinPhilly
06-12-2018, 03:49 AM
You could add the following at the beginning of your macros :


On Error Resume Next

Although having a more proper ERROR HANDLER would be in order.

I thought there were error handlers in all procedures, but you are correct, there were a few that didn't have them. Your suggested fix appears to be working. Time will tell.