| Posted: 11:53am 19 Apr 2026 |
Copy link to clipboard |
 Print this post |
|
Here is my test. 'Test clearing error messages. On error skip SetTick 200,Show_Pos 'this Sub does not exist Print "An Error Occured = ";MM.ErrMsg$ On ERROR SKIP Stepper close 'Stepper was never opened Print "An Error Occured = ";MM.ErrMsg$ On error skip If MM.ErrMsg$ = "" Then Print "Error message cleared" Print MM.ErrMsg$ Print "finished" End Output> RUN An Error Occured = Cannot find label An Error Occured = Stepper not initialized Error message cleared
finished > |