How to disable On Error Resume Next?

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?
 
S

Stuart McCall

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?) ;-)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top