IpcClient.ClientError Method (Typed) | |
Handle ClientErrorEvent, if one occurs. Provide this event handler in your derived IpcClient class if you require special handling of errors.
Namespace:
XSharp.VO.SDK
Assembly:
XSharp.VOGUIClasses (in XSharp.VOGUIClasses.dll) Version: 2.19
Syntax VIRTUAL METHOD ClientError(
oIpcClientErrorEvent AS IpcClientErrorEvent
) AS USUAL
public virtual Usual ClientError(
IpcClientErrorEvent oIpcClientErrorEvent
)
Request Example
View SourceParameters
- oIpcClientErrorEvent
- Type: IpcClientErrorEvent
The type of error that occurred. Refer to the IpcClientErrorEvent class for a list of error types.
Return Value
Type:
Usual
TRUE if the DDE conversation is to continue; otherwise, FALSE.
Examples
The following example demonstrates how a client error event is handled by the ClientError() method:
1METHOD ClientError(oICEE) CLASS MyClient
2LOCAL Err := oICEE:ErrorType
3DO CASE
4CASE Err == IPCSERVERNOTFOUND
5...
See Also