I am trying to import a text file that is generated by another app' the problem I have is, that the files generated are randomly named the only thing that is constant - is the file extension which is .rnd. I have tried using:
[DoCmd.TransferText acImportFixed, "myspec", "mydtbl", "e:\temp\[*].rnd"] and also:
[DoCmd.TransferText acImportFixed, "visitspec", "tblvisit", "e:\temp\*.rnd"]
but both methods generate an error
any suggestions please
[DoCmd.TransferText acImportFixed, "myspec", "mydtbl", "e:\temp\[*].rnd"] and also:
[DoCmd.TransferText acImportFixed, "visitspec", "tblvisit", "e:\temp\*.rnd"]
but both methods generate an error
any suggestions please