DoCmd.TransferDatabase acImport, "c:\myfolder\Test.mdb", acTable, "tblTest", "tblTest"
The above code works fine, with the exception that upon execution it prompts for a password, since "c:\myfolder\Test.mdb" is password protected.
I really wouldn't like to remove the password protection if at...