I'm using MS Access 2003.
I'm have a form on which the user clicks a Browse button to select a file to be imported into Access. If I use the following syntax to do the import, I receive a run-time error "Type mismatch":
(The textbox stores the path and filename that was browsed.)
However, if I change the code by substituting a string literal for the textbox reference, it works:
Note: The file referenced in the string literal above is the same path/filename selected and stored in the textbox in the first code snippet above.
Any idea what I'm doing wrong?
Thanks for any help you can give.
Wayne
I'm have a form on which the user clicks a Browse button to select a file to be imported into Access. If I use the following syntax to do the import, I receive a run-time error "Type mismatch":
Code:
DoCmd.TransferText acImportDelim, "LiaImportSpecification", "tblLiaSourceImport", Me.txtLiaImportFile.Text, False
However, if I change the code by substituting a string literal for the textbox reference, it works:
Code:
DoCmd.TransferText acImportDelim, "LiaImportSpecification", "tblLiaSourceImport", "H:\SmartSoft\SsLogistics\CSVInput\lia.csv", False
Any idea what I'm doing wrong?
Thanks for any help you can give.
Wayne