-->>Hi all...
-->>Here is what makes me be unconfortable here...
-->>I was trying to develop a Progam that will help me creat a folder and make a copy of my passports
-->>I managed to creat a folder but when I try to Copy the files is where I get an Error...
-->>My code is as follows..
Private Sub cmdBackup_Click()
Dim Picture_Files As FileSystemObject
If txtDestination.Text <> "" Then
MkDir (txtDestination.Text & " Pasports")
'An Error Occurs here Saying "OBJECT VARIABLE NOT SET" !!!!!!
Picture_Files.CopyFile GetAppPath() & "Pasports\*", (txtDestination.Text & " Pasports\"), True
Else
MsgBox "Batabase Backup Destination Drive or Folder Required.", vbOKOnly + vbCritical, "Browse For Backup Destination."
txtDestination.SetFocus
End If
End Sub
-->>Now Can some one please help me out?
-->>Thaks.