This event is raised whenever an error is generated from the Process Analyst.
Defined As
Parameters
errorCode
[in]
Indicates the
error that occurred. See the ErrorNotifyCode enumeration.
errorMessage
[in]
Contains the
message associated with the error code.
processAnalyst
[in]
Indicates the
Process Analyst object which raised the event. (Cicode only)
See Also
Calling Syntax
Assumes you have a Process Analyst on a page with an event class defined as myPage_AN35.
[VBA]
Sub myPage_AN35_Error(errorCode As Integer, errorMessage As String)
End Sub
[Cicode]
FUNCTION myPage_AN35_Error(OBJECT processAnalyst, INT errorCode, STRING errorMessage)
END