Hi everybody,
I am trying to read a file into a table using transfertext command. But if the file name holds '.' before the file extension, Access cannot the find the file (error 3011). My code is:
FileName: "25.0101 Feest 3000 formule - 1 WAND element.txt" gives an error
But: 250101 Feest 3000 formule - 1 WAND element.txt; works ok
Any suggestions?
Pampers
Keeping it simple can be complicated
I am trying to read a file into a table using transfertext command. But if the file name holds '.' before the file extension, Access cannot the find the file (error 3011). My code is:
Code:
DoCmd.TransferText acImportDelim, "specArtImp_SchapKaart", "tblArtImpLocalTemp", strInputFileName, False
FileName: "25.0101 Feest 3000 formule - 1 WAND element.txt" gives an error
But: 250101 Feest 3000 formule - 1 WAND element.txt; works ok
Any suggestions?
Pampers
Keeping it simple can be complicated