IpcClient.ClientError Method | |
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
[ClipperCallingConventionAttribute(new string[] { ... })]
public virtual Usual ClientError(
Usual oIpcClientErrorEvent = default
)
Request Example
View SourceParameters
- 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:
1METHOD ClientError(oICEE) CLASS MyClient
2LOCAL Err := oICEE:ErrorType
3DO CASE
4CASE Err == IPCSERVERNOTFOUND
5...
See Also