TomG1,
This may be to late but you can try this.
Private Sub mnuBackupItem_Click()
Dim SourceFile, DestinationFile, Default
Default = A:\backup.mdb"
SourceFile = "C:\original folder\original.mdb"
Prompt$ = "Would you like to make a backup copy of the database?"
reply = MsgBox(Prompt$, vbOKCancel, SourceFile)
If reply = vbOK Then
DestinationFile = InputBox$("Enter the pathname for the backup copy.", "File Backup", Default)
If DestinationFile <> "" Then FileCopy SourceFile, DestinationFile
End If
End Sub