Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
How to get error handler?
Message
From
01/09/1998 19:38:06
 
 
To
01/09/1998 17:09:38
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00132084
Message ID:
00132145
Views:
13
>Is the original error handler set using ON ERROR? If so, you can use Josh's suggestion in the following manner:
>
>PROCEDURE MyFunction
>LOCAL cErrorHandler
>cErrorHandler=ON("ERROR")
>ON ERROR DO newhandler   && Change
>.
>.
>IF !EMPTY(cErrorHandler)
>   ON ERROR &cErrorHandler
>ENDIF
>RETURN  && Back to calling program
>
>

Careful there. this routine will leave the temporary error handler in place if there was no previous handler.

You don't need to check for EMPTY, because issuing ON ERROR with no arguments clears the error handler, just like it was before, so will be safe issuing

ON ERROR &cErrorHandler

whether or not there is anything in the variable.
Erik Moore
Clientelligence
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform