ACC: Cannot Trap Import Errors in Visual Basic for Applications
ID: Q169956
|
The information in this article applies to:
-
Microsoft Access versions 7.0, 97
SYMPTOMS
Moderate: Requires basic macro, coding, and interoperability skills.
In Visual Basic for Applications, you cannot trap for import errors
generated when you use the TransferText or the TransferSpreadsheet method
to import or append data to a Microsoft Access table.
This article assumes that you are familiar with Visual Basic for
Applications and with creating Microsoft Access applications using the
programming tools provided with Microsoft Access. For more information
about Visual Basic for Applications, please refer to your version of the
"Building Applications with Microsoft Access" manual.
MORE INFORMATION
The same rules that apply to manual data entry also apply to methods for
importing data in Visual Basic for Applications. Therefore, any violations
of rules, such as referential integrity, validation rules, or the Required
property, will result in an incomplete import.
In Microsoft Access 1.x and 2.0, a violation of these rules generates a
trappable error, which makes it possible for developers to determine if the
import completed successfully. In Microsoft Access 7.0 and 97, this
behavior has changed so that no trappable error is generated. Furthermore,
if the procedure disables system messages by using the SetWarnings
statement, there is no indication that any problem occurred.
Steps to Reproduce Behavior
- Open any text editor, such as Notepad, and create the following new
text file:
OrderID,ProductID,UnitPrice,Quantity,Discount
99999,54,7.45,20,0.000
- Save the text file as C:\My Documents\OrdDetails.txt.
- Start Microsoft Access and open the sample database Northwind.mdb.
- On the File menu, point to Get External Data, and then click Import.
- In the Import dialog box, select Text Files in the Files Of Type box.
- Locate the folder C:\My Documents, select OrdDetails.txt, and click
Import.
- On the first screen of the Import Text Wizard, select the Delimited
option, and then click Next.
- On the second screen of the Import Text Wizard, select the "First Row
Contains Field Names" option.
- Click the Advanced button.
- In the OrdDetails Import Specification dialog box, click Save As.
- In the Save Import/Export Specification box, type Order Details
Specification in the Specification Name
box, and then click OK.
- Click OK to close the Order Details Specification dialog box.
- Click Cancel to exit the Text Import Wizard.
- Create a module and type the following line in the Declarations
section if it is not already there:
Option Explicit
- Type the following procedure:
Sub ImportOrderDetails()
On Error GoTo ImportOrderDetails_Error
DoCmd.TransferText acImportDelim, _
"Order Details Specification", _
"Order Details", "C:\My Documents\OrdDetails.txt"
Exit_ImportOrderDetails:
Exit Sub
ImportOrderDetails_Error:
MsgBox "Error Handler was invoked."
MsgBox CStr(Err) & " " & Err.Description
Resume Exit_ImportOrderDetails
End Sub
- To test this procedure, type the following line in the Debug window,
and then press ENTER.
ImportOrderDetails
Note that you receive the following message:
Microsoft Access was unable to append all the data to the table.
The contents of fields in 0 records(s) were deleted, and 1 record(s)
were lost due to key violations.
Click Yes. Note that the error handler never executes. This indicates
that the procedure did not encounter a trappable error.
Keywords : kbinterop kbprg IsmTxtd IsmTxtfx IsmExl4 IsmExl5 PgmErr
Version : 7.00 97
Platform : WINDOWS
Issue type : kbprb
|