

TFileDrag Component - Adds support for dropping files from explorer onto a 
                      a Delphi form.

Copyright (c) 1996 - Erik C. Nielsen ( 72233.1314@compuserve.com )
All Rights Reserved


I. Installation

   1. Copy FILEDRAG.PAS and FILEDRAG.DCR into a directory.
   
   2. In Delphi, select Component - Install menu option.
   
   3. Select Add... button
   
   4. Select Browse
   
   5. Select filedrag.pas in the directory from step 1
   
   6. Select OK
   
   The component library will now re-compile, and when it is finished you should
   have a TFileDrag component on your System tab.
   
   
II. Using   

   To be able to drop files from the explorer onto your app:
   
   1. Place a TFileDrag component on your form
   
   2. Add a handler for the OnDrop event
   
   3. Enable dropping by changing EnableDrop to TRUE in the property manager
      or in your code somewhere.
      
   4. Run your app and drag some files from the explorer.
   
   The file names are stored in 3 different string lists for convinence.  NameWithPath
   contains the fully qualified path name ( c:\windows\win.ini ).  NameOnly contains
   just the file portion of the name minus any path info ( win.ini ).  Extension
   contains just the extension without the period ( ini ).
   
   FileCount is a read-only property that contains the number of files dropped.
   
   See the example program for a demo of how to use this component.
   
   
III. Legal Junk

   This component is provided as Free-Ware.  You can use it however you like, but
   you may not sell it as a Delphi component or as part of a Delphi component collection.
   
   If you have problems/bugs/requested features, e-mail me and I will try to address them,
   but I can't make any guarantees.
