D
DS
I'm trying to export a table to a txt file, the export works fine.
'Export
Private Sub Command0_Click()
DoCmd.TransferText acExportDelim, , "Table1", "c:\Access\export.txt"
End Sub
The problem is when I try to import back into the table, it keeps asking
for a field that does't exist. Any help appreciated.
'Import
Private Sub Command1_Click()
DoCmd.TransferText acImportDelim, , "Table1", "C:\Access\Export.txt"
End Sub
Thanks
DS
'Export
Private Sub Command0_Click()
DoCmd.TransferText acExportDelim, , "Table1", "c:\Access\export.txt"
End Sub
The problem is when I try to import back into the table, it keeps asking
for a field that does't exist. Any help appreciated.
'Import
Private Sub Command1_Click()
DoCmd.TransferText acImportDelim, , "Table1", "C:\Access\Export.txt"
End Sub
Thanks
DS