On Error Resume Next Fundamentals
How does On Error Resume Next work? Does it affect ALL code after it? How does one reset On Error Resume Next so that this type of error trapping only affects a range of code (say a small loop routine that checks to see if files exist or not by).
I would like to have a normal subroutine error handler (On Error Goto ErrHandler...) for the general subroutine, but would like to have separate error handlers for key parts of the subroutine; is this possible? how?
Thank you!
Llyal
How does On Error Resume Next work? Does it affect ALL code after it? How does one reset On Error Resume Next so that this type of error trapping only affects a range of code (say a small loop routine that checks to see if files exist or not by).
I would like to have a normal subroutine error handler (On Error Goto ErrHandler...) for the general subroutine, but would like to have separate error handlers for key parts of the subroutine; is this possible? how?
Thank you!
Llyal