|
Description
|
Fired when a non blocking error occurs during operations.
|
|
Syntax
|
Private Sub IXF_Error(ErrorCode As Integer, ErrorString As String)
|
|
Remarks
|
If a non blocking error occurs during conversions the program is notified by firing the Error event. This event is fired, with ErrorCode = 0, after successfully invoking the ImportIXF and ExportIXF Methods. The error codes are:
| Value | Description |
| | 0 | Ok | | 1 | Specify file name | | 100 | No records found | | 101 | No Header Record found | | 102 | No Table Record found | | 103 | No fields defined | | 104 | Error in reading Column record | | 105 | Table 'XXXXXXXX' is empty | | 201 | Table 'XXXXXXXX' already exists | | 202 | Table 'XXXXXXXX' is locked by another user or process | The parameters for the Error event are described below:
| ErrorCode | An integer that holds the current error number. | | ErrorString | A string expression that holds text, if available, describing the current error. |
|