|
-
May 24th, 2000, 09:28 PM
#1
Thread Starter
_______
using commondialog I select a file
from anywhere on my system drives.
how do I move it to C:\Mynewfolder
Private Sub cmdGetPic_Click()
'Set the properties of the text control
CommonDialog1.Filter = "Pictures(*.jpg)|*.jpg*|Gif Files(*.gif,*.gif)|*.htm*|All files(*.*)|*.*"
CommonDialog1.FilterIndex = 1
CommonDialog1.FileName = "YourFile"
CommonDialog1.DefaultExt = "txt"
CommonDialog1.ShowSave
'What goes here to do the move or copy
'preferably move but if not I can kill
'the file later in the event
End Sub
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|