Hello everyone,
I am working with MS Access databases (.mdb) Can anyone please give me a simple directive on copying a database from one destination to another (from Source to destination)
Actually I am intend to copy the database from a Server db to my local C:\ drive.
Below is my set up so far:
Any hint will be greatly appreciated.Code:Private Sub cmddbCopy_Click() Dim dbsource As Database Dim dbdestination As Database Set dbdestination = CurrentDb Set dbsource = OpenDatabase("M:\\Livctrls03-08\data1\App\UCCProd\Databases\Unclaimed Checks.mdb", True, True) Set dbdestination = OpenDatabase("C:Unclaimed Checks.mdb", True, False)
Giftx.




Reply With Quote