Hi everyone, I realize that in System Config Editor/Error Settings you can send an e-mail or execute a program. But at this point is there any way to access the actual error message that can be passed to the program? Alternatively is there a code hook similar to the OnAbort sub-method where you can take a custom action on an dialog error event? Looked at the HSLErrLib and didn’t see anything like an error event handler registration. Specifically referring to user-recoverable error dialogs that might pop up during aspiration/dispense (Insufficient Liquid etc.) Thanks!
My understanding was the setting up and error handling by the user step will funnel all runtime errors through the sequence of events you define there. So I don’t see why you wouldn’t be able to do something under the “Begin Error Handling by the User” branch, even calling a a custom error handler submethod if desired.
I tried to do this error capturing function, for we wanted to record the error during run. But unfortunately, until now I can not find a way to this in venus. I even monitored the event of Hamilton’s ActiveX for run control and instrument, but this did not work.
Maybe we can monitor the error handling dialog with Win32 API, and get error message from the text control. Or we can parse log file of venus, and extract the error message. But all these are not I want