S SeanITFC New member Local time Yesterday, 19:27 Joined Feb 16, 2005 Messages 7 Feb 23, 2005 #1 I am looking for the VBA code to backup the (current/open) database to another folder in the c:/ drive. It will sit on the on click event of a command button. Many Thanks SeanITFC
I am looking for the VBA code to backup the (current/open) database to another folder in the c:/ drive. It will sit on the on click event of a command button. Many Thanks SeanITFC
J Jacob Mathai Registered User. Local time Today, 03:27 Joined Sep 6, 2001 Messages 546 Feb 23, 2005 #2 use the shell command. Create a batch file (to copy database file). Call the batch file with a shell command. example : Dim Retval Retval = Shell("D:\DATA\EXPDEMAND.BAT", 1)
use the shell command. Create a batch file (to copy database file). Call the batch file with a shell command. example : Dim Retval Retval = Shell("D:\DATA\EXPDEMAND.BAT", 1)
S SeanITFC New member Local time Yesterday, 19:27 Joined Feb 16, 2005 Messages 7 Feb 23, 2005 #3 Many Thanks Jacob Many Thanks for your help SeanITFC