I have set up a saved import spec called "Copy Import" to import a text file into Access; the fields are set up as Long Text, and when I manually run the saved import in Access, everything works just fine.
When I run this line of code as part of a click button on a form, the import truncates data to 255 characters without returning an error.
DoCmd.TransferText acImportDelim, "Copy Import", "Copy", "H:\data-full-export.txt", True
What can I do to include this code, but get all characters in my fields?