Background: I have a process that links Quickbooks to Ms Access. If a button is pressed, some information will be queried from Quickbooks and then updates M
You can try using FileSystemObject like this:
'strFrom = Application.CurrentProject.FullName
'strTo = "C:\FolderName\NewFileName.accdb"
Public Sub copyFile(strFrom As String, strTo As String)
Dim fso As FileSystemObject
Set fso = New FileSystemObject
fso.copyFile strFrom, strTo
Set fso = Nothing
End Sub