I have a tab delimited text file and you want to import it into MS Access using VBA code.
I created an MS Access form and used the method DoCmd.TransferText:
DoCmd.TransferText(TransferType, SpecificationName, TableName, FileName, HasFieldNames, HTMLTableName, CodePage)
This works well for a CSV file. I am not sure how to do this with tab delimited text files.
Any suggestions?
source
share