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 >
Wrap
Text File
|
2001-07-23
|
332b
|
18 lines
program SI_GUI;
uses
Forms,
Main in 'Main.pas' {frmMain},
WI in 'WI.PAS' {frmWI},
PL in 'PL.pas' {frmPerfLib},
CP in 'CP.pas' {dlgCounter: TFrame};
{$R *.RES}
begin
Application.Initialize;
Application.Title := 'System Overview';
Application.CreateForm(TfrmMain, frmMain);
Application.Run;
end.