On Error Resume Next will not fire

  • Thread starter Thread starter Brad
  • Start date Start date
B

Brad

Building an Access 2000 application.

On one of our test PC's the "On Error Resume Next" is
being ignored, and all of the errors are shown to the user
instead of being handled by our code.

On the other 9 PC's the "On Error ..." code handles the
various errors that can occur throughout the application.

All test PC's have the same version and service pack for
Access 2000, and all have the same references within VBA
(DAO 3.6 Object Library, Access 9.0 Object Library, etc.)

Why is the one PC ignoring the On Error logic?
 
Brad said:
Building an Access 2000 application.

On one of our test PC's the "On Error Resume Next" is
being ignored, and all of the errors are shown to the user
instead of being handled by our code.

On the other 9 PC's the "On Error ..." code handles the
various errors that can occur throughout the application.

All test PC's have the same version and service pack for
Access 2000, and all have the same references within VBA
(DAO 3.6 Object Library, Access 9.0 Object Library, etc.)

Why is the one PC ignoring the On Error logic?


It sounds like that db has the Break On All Errors option
set. (VBE: Tools - Options - General)
 
Back
Top