I am using the following codes to import a text file to a table in serveral databases:
DoCmd.TransferText acImportDelim, “tblTest Import Specification”, “tbl_List”, “\sharedrivetest.txt”, True
Can I import the same text file by using the codes above in different databases at the same time? For example, user “A” imports the test text file at 9AM today to database A; and user “B” imports the same test text file at 9AM today too to database B. Is user “B” going to get error message, such as “Can’t find the specifc file?”
Thanks in advance.