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

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

Bob Phillips

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)
 
E

EagleOne

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)
 
Top