On Error GoTo 0
On Error GoTo 0
Return to the default error handling in VBA. Most instances when you see
this are the result of setting the system to ignor errors while a potentially
problematic line of code executes. After that line is passed you want the
system to start catching errors again so you turn error handling back on to
the default settings.
--
HTH...
Jim Thomlinson
"Freddy" wrote:
What does "On Error GoTo 0" mean? I see this on many of the posts.
|