On Error Resume Next (when next statement is Do Loop ...)

  • Thread starter Thread starter EagleOne
  • Start date Start date
E

EagleOne

2003

If the next code-line after On Error Resume Next is a Do .... Loop,
is the next "statement" the entire Loop or the first code-line
in the Do .... Loop?
 
It applies until the error handling is reset with an On Error Goto 0, but
each line will be executed even if the previous on errors.

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)
 
Thanks Bob


Bob said:
It applies until the error handling is reset with an On Error Goto 0, but
each line will be executed even if the previous on errors.

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)
 

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

Back
Top