home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 October / Chip_2001-10_cd1.bin / zkuste / delphi / kompon / d56 / MSYSINFO.ZIP / Demos / GUI / SI_GUI.dpr < prev    next >
Text File  |  2001-07-23  |  332b  |  18 lines

  1. program SI_GUI;
  2.  
  3. uses
  4.   Forms,
  5.   Main in 'Main.pas' {frmMain},
  6.   WI in 'WI.PAS' {frmWI},
  7.   PL in 'PL.pas' {frmPerfLib},
  8.   CP in 'CP.pas' {dlgCounter: TFrame};
  9.  
  10. {$R *.RES}
  11.  
  12. begin
  13.   Application.Initialize;
  14.   Application.Title := 'System Overview';
  15.   Application.CreateForm(TfrmMain, frmMain);
  16.   Application.Run;
  17. end.
  18.