I'm working on a project in which I have to import a text file into a table. I'm importing the text using the following code in the button's on click event:
DoCmd.TransferText acImportDelim, "TEXT", "tblExisting", "c:\textfile.txt", True, ""
This appends the records to the table. My question...