home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1997 May / Pcwk0597.iso / delphi / tenpack.lzh / DEMOFIND.DPR < prev    next >
Text File  |  1995-06-19  |  188b  |  13 lines

  1. program Demofind;
  2.  
  3. uses
  4.   Forms,
  5.   filedemo in 'FILEDEMO.PAS' {DemoFileFind};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.CreateForm(TDemoFileFind, DemoFileFind);
  11.   Application.Run;
  12. end.
  13.