Drag and drop files to a form, then copy the files to a particular location, example to another pc on a network? any ideas?
or i'll re-phrase my question..drag and drop to transfer files
any help is greatly appreciated..
thanks...
Printable View
Drag and drop files to a form, then copy the files to a particular location, example to another pc on a network? any ideas?
or i'll re-phrase my question..drag and drop to transfer files
any help is greatly appreciated..
thanks...
i used this to open the content of the dropped file into a textbox, just change the code to do whatever you want with the files, looping through the arrayvb Code:
Private Sub Form_OLEDragDrop(Data As DataObject, Effect As Long, Button As Integer, Shift As Integer, X As Single, Y As Single) openfile Data.Files(1) End Sub