DoCmd.TransferText acImportDelim, Import-Accounts, "tableImport", _
"C:\Documents and Settings\accounts.txt", True
The second parameter: Import-Accounts
is the actual name of the saved import specifications. supposedly it does NOT need to be in quotes; however in this case since there is a -
there it is treating it as if i were doing an operation.
is there a way i can force it to treat it literally instead of as an operation?