On error restart?

liuec

Registered User.
Local time
Today, 08:31
Joined
Jun 23, 2011
Messages
25
Hello, i'd very much appreciate it if someone can tell me how to write an error handling line that will rerun the current public sub or function from the start upon error...

thanks!!
 
Generally, include a line at the beginning like:

RestartPoint:

and in your error handler

GoTo RestartPoint
 
Thanks, that does the trick...
Here's another problem, is there a way that i can automatically click on the "End" bottom when the debugger message pops up??




Generally, include a line at the beginning like:

RestartPoint:

and in your error handler

GoTo RestartPoint
 

Users who are viewing this thread

Back
Top Bottom