LOL Yes it is.
On Error Resume Next - this means if an error occurs resume cause you are looking for it put err.clear in some statement afterwards to clear the error
On Error goto "ErrLabel" - means goto "ErrLabel" There should be Err.clear and "clean up variables" then exit (don't want any errors floating around to mess things up later)
Then at the end of the sub/function place on error goto 0 - this turns off error checking. I have found that if you don't it may come back and mislead you as to where the actual error occured. Real PAIN to debug the app
Don't hesitate to ask more, we have a lot of real good coders around here, sometimes it takes a few posts to get to the problem, but we hang till it's done.
See you in the next Question![]()