Consulting

Results 1 to 3 of 3

Thread: any error causes crash

  1. #1

    any error causes crash

    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?

  2. #2
    VBAX Expert Logit's Avatar
    Joined
    Sep 2016
    Posts
    613
    Location
    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.

  3. #3
    Quote Originally Posted by Logit View Post
    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.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •