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

  1. program Demors;
  2.  
  3. uses
  4.   Forms,
  5.   resdemo in 'RESDEMO.PAS' {DemoResources};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.Title := 'Resource Meter Demo';
  11.   Application.CreateForm(TDemoResources, DemoResources);
  12.   Application.Run;
  13. end.
  14.