-->>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.

Recommended Answers

All 2 Replies

Hi Bile,

You have not initialised your file system object you need to add this line after the declaration. Set Picture_Files = new filesystemobject()

Regards
Srk

-->>Waaaoooh!!!
-->>Just as you said srkv03 just a single line then BOOOM...
-->>thanx a loooot...

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.