I have an ocx that can sometimes cause an "internal application error" when calling one of it's methods in vfp9.
I've tried using on error and try/catch. For both, instead of getting the error, I get the Microsoft Visual ForPro has encountered a problem and needs to close.... Send Error Report/Don't Send dialog.
This is what my code looks like.
on error code (note that I never see the wait window):
LOCAL lcOnError
PUBLIC glErrorResult
glErrorResult = .F.
lcOnError = ON('ERROR')
ON ERROR glErrorResult = .T.
This.oOCXControl.Method()
IF glErrorResult
WAIT WINDOW 'error'
ENDIF
ON ERROR &lcOnError
RELEASE glErrorResult
try/catch code (again, I never see the wait window):
Local oError as Exception
Try
This.oOCXControl.Method()
Catch to oError When .T.
WAIT WINDOW 'error'
EndTry
Is there anything else I could try to handle the error to prevent my app crashing?