Click or drag to resize

IpcClient.ClientError Method

X#
Handle ClientErrorEvent, if one occurs. Provide this event handler in your derived IpcClient class if you require special handling of errors.

Namespace:  VO
Assembly:  VOGUIClasses (in VOGUIClasses.dll) Version: 2.19
Syntax
 VIRTUAL METHOD ClientError(
	oIpcClientErrorEvent
) AS USUAL CLIPPER
Request Example View Source

Parameters

oIpcClientErrorEvent (Optional)
Type: Usual
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:
X#
1METHOD ClientError(oICEE) CLASS MyClient
2LOCAL Err := oICEE:ErrorType
3DO CASE
4CASE Err == IPCSERVERNOTFOUND
5...
See Also