Error [Event]
- Last UpdatedJul 18, 2023
- 1 minute read
This event is raised whenever an error is generated from the Process Analyst.
Defined As
-
[VBA] Error(errorCode As Integer, errorMessage As String)
-
[Cicode] Error(OBJECT processAnalyst, INT errorCode, STRING errorMessage)
-
[C++] Error(ErrorNotifyCode errorCode, BSTR errorMessage)
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)
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