We need to include a backup module in the Access 2002 VBA application that we are writing. When the system goes live, it will be split into a front end (programs) mdb and a back end (data) mdb. The backup file will be written to CDRW and its name should include the current business date which is stored in one of the tables. The user requires a “hands off” approach. In other words, the less action that the staff needs to take, the better.
I was thinking of copying the tables via a DoCmd.CopyObject statement, one for each table. I can copy all tables this way. That is not a problem. My question is: Is there a fast and easy way to copy the entire back end mdb file, in one shot, from the front end mdb?
Thanks.