sergio vieira
Member
- Local time
- Today, 21:53
- Joined
- Apr 22, 2024
- Messages
- 35
Good morning. I solved one problem and was left with another. I have this code to copy the backups to the My Documents\Backups folder. However, I can only send it to c:\Backups. When I try to send it to MyDocuments\Backups, it doesn't work. I would appreciate your help. Thanks
Public Sub Zipabanco()
Dim strDate As String, DefPath As String
Dim App As Object
Dim FName, FileNameZip
Dim strPrefix As String
On Error Resume Next
DefPath = "c:\Backups"
If right(DefPath, 1) <> "\" Then
DefPath = DefPath & "\"
End If
strDate = Format(Now, "dd-mmm-yy_h-mm-ss")
FileNameZip = DefPath & "Backup_" & strDate & ".zip"
'strPrefix = "Server.mdb"
FName = "c:\Patrigest\Server\Server.mdb"
'CurrentProject.Path & "\" & strPrefix & ""
On Error Resume Next
CreateNewZip (FileNameZip)
Set oApp = CreateObject("Shell.Application")
oApp.NameSpace(FileNameZip).CopyHere FName
Call MsgBox("Created Successfully at: " & FileNameZip, vbInformation, "Success")
Set oApp = Nothing
ExitSub
End Sub
Public Sub Zipabanco()
Dim strDate As String, DefPath As String
Dim App As Object
Dim FName, FileNameZip
Dim strPrefix As String
On Error Resume Next
DefPath = "c:\Backups"
If right(DefPath, 1) <> "\" Then
DefPath = DefPath & "\"
End If
strDate = Format(Now, "dd-mmm-yy_h-mm-ss")
FileNameZip = DefPath & "Backup_" & strDate & ".zip"
'strPrefix = "Server.mdb"
FName = "c:\Patrigest\Server\Server.mdb"
'CurrentProject.Path & "\" & strPrefix & ""
On Error Resume Next
CreateNewZip (FileNameZip)
Set oApp = CreateObject("Shell.Application")
oApp.NameSpace(FileNameZip).CopyHere FName
Call MsgBox("Created Successfully at: " & FileNameZip, vbInformation, "Success")
Set oApp = Nothing
ExitSub
End Sub