I am using the following code to transfer text
Private Sub cmdImportSerials_Click()
DoCmd.TransferText acImportFixed, "ImportSerial", "tblSerialNumber", Application.CurrentProject.Path & "\serial.txt", False
Me.Refresh
End Sub
This works fine, the code is executed via a button on a form and...