' #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
'   OLE Drag and Drop sample code.
'
'   Authored by Joseph Guadagno. Email jguadagno@bigfoot.com
'   Written for : Beyond The Basics Of Visual Basic
'   http://www.beyondvb.com
'
' #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#

The instructions are simple.  

The Files list box can accept files from
another source like explorer.  Just drag the files from the Explorer and
drop them onto the Files list box.  Nothing will happen but some status
messages.  You should develop the code yourself to do the copying and 
the moving of the files.  

If you want files to be dragged out of the file list box just hold down
either the Shift or the Control key and drag away.  The current example
will drag to anything that handle text or files. For text it will create
a tab seperated string with the filenames. For files it will file up the 
DataObject with a list of file names.

If there are any questions, feel free to visit my web site listed above
or email at the address above.
