05-13-2007, 07:51 AM
Quote:how do I get 'C' to continue it from where the time out error occurred
On err+, the execution place is lost. It is possible only with err (which handles single statement).
;g1
something that throws error
err goto g1
Quote:how do I get 'C' to continue it from where the time out error occurred
Quote:is there a way to back it up or move it forward a certain number of lines or to a certain place in the macro text?
No. Only using goto to a predefined label.
