dheich4321
Registered User.
- Local time
- Today, 01:03
- Joined
- Apr 21, 2003
- Messages
- 36
I have a transfer text module that does the following
Function AddressTable()
DoCmd.OpenQuery "Delete AddressSkip Table", acViewNormal, acEdit
DoCmd.TransferText acImportDelim, "AddressSkip Import Specification", "AddressSkip", "C:\pmclabel\addressskip.txt", True, ""
End Function
It deletes the data in the table then imports the records.
If I do the process manually. File->Import Data> Advanced- use the AddressSkip Import Specification. into an existing table. It imports the data correctly.
When I use the module, it imports the 1st field and nothing more.
Any suggestions?
Function AddressTable()
DoCmd.OpenQuery "Delete AddressSkip Table", acViewNormal, acEdit
DoCmd.TransferText acImportDelim, "AddressSkip Import Specification", "AddressSkip", "C:\pmclabel\addressskip.txt", True, ""
End Function
It deletes the data in the table then imports the records.
If I do the process manually. File->Import Data> Advanced- use the AddressSkip Import Specification. into an existing table. It imports the data correctly.
When I use the module, it imports the 1st field and nothing more.
Any suggestions?