I'm modifying a existing Access App someone else made to add additional fields to the application.
The application imports a spreadsheet and formats the fields into an text export file.
One line of code is giving me problems:
DoCmd.TransferText acExportFixed, "T_INFO_Text Export Specification", TableName, "C:\Temp\" & TableName & ".txt"
I get error 3011 on this line and it says Microsoft Office Access database engine could not find object 'myfile#txt' (TableName = myfile)
I found this article on the subject which has helped with another error I was getting before, but I'm still stuck on this error.
The application imports a spreadsheet and formats the fields into an text export file.
One line of code is giving me problems:
DoCmd.TransferText acExportFixed, "T_INFO_Text Export Specification", TableName, "C:\Temp\" & TableName & ".txt"
I get error 3011 on this line and it says Microsoft Office Access database engine could not find object 'myfile#txt' (TableName = myfile)
I found this article on the subject which has helped with another error I was getting before, but I'm still stuck on this error.