Hi,
I am using the following code to import data from an existing database into a new database as new releases have been distributed.
'Add new tables to Back End
DoCmd.RunSQL "DROP TABLE tblMain;"
DoCmd.TransferDatabase acImport, "Microsoft Access", dbPath, acTable, "tblMain", "tblMain"...