home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2001 September
/
Chip_2001-09_cd1.bin
/
zkuste
/
delphi
/
kompon
/
d2345
/
MSYSINFO.ZIP
/
Demos
/
SI.dpr
< prev
next >
Wrap
Text File
|
2001-06-25
|
328b
|
18 lines
program SI;
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.