I should know this, but obviously I don't...
If I envoke error handling using On Error [Whatever: Goto, Resume, etc.]
is there a statement that I can execute which will negate the On Error
command? Once the section of code that the On Error handles is finished,
I want to change how errors are handled - for now, to break on an error.
Dirk Goldgar - 26 Jul 2005 23:17 GMT
> I should know this, but obviously I don't...
>
[quoted text clipped - 3 lines]
> is finished, I want to change how errors are handled - for now, to
> break on an error.
"On Error GoTo 0" restores the default error-handling; "On Error Resume
Next" establishes in-line error handling (or "error ignoring", if you
are so inclined).

Signature
Dirk Goldgar, MS Access MVP
www.datagnostics.com
(please reply to the newsgroup)