How to disable On Error Resume Next?

  • Thread starter Thread starter Dalt
  • Start date Start date
D

Dalt

I use "On Error Goto" all the time, but Is it possible, once you use the "On
Error Resume Next" to undo this command completely so it just stops on each
error like if you never declared an "On Error" type statement?
 
Dalt said:
I use "On Error Goto" all the time, but Is it possible, once you use the
"On
Error Resume Next" to undo this command completely so it just stops on
each
error like if you never declared an "On Error" type statement?

Yes:

On Error GoTo 0

(intuitive don't ya think?) ;-)
 
Back
Top