copy a file to your windows desktop from dialog control box.
copy a file to your windows desktop from dialog control box.
Rate copy a file to your windows desktop from dialog control box.
(2(2 Vote))
'and enter this code into the submenu.
Private Sub mnuEditCopyFile_Click()
'copy file to new location
Dim New_Location As String
Dim Copy
CommonDialog1.DialogTitle = "Copy File"
CommonDialog1.ShowOpen
New_Location = "c:\Windows\Desktop\NewFile1.txt"
Copy = CopyFile(CommonDialog1.FileName, New_Location, 1)
End Sub
copy a file to your windows desktop from dialog control box. Comments
No comments yet — be the first to post one!
Post a Comment