home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2002 March
/
Chip_2002-03_cd1.bin
/
zkuste
/
delphi
/
kompon
/
d56
/
MSYSINFO.ZIP
/
Demos
/
GUI
/
CompInfo.dpr
next >
Wrap
Text File
|
2002-01-04
|
995b
|
31 lines
program CompInfo;
uses
Forms,
Main in 'Main.pas' {frmMain},
ProcessProps in 'ProcessProps.pas' {propProcess: TFrame},
PropsDlg in 'PropsDlg.pas' {dlgProperties},
ServiceProps in 'ServiceProps.pas' {propService: TFrame},
CounterProps in 'CounterProps.pas' {propCounter: TFrame},
WindowProps in 'WindowProps.pas' {propWindow: TFrame},
EventLogProps in 'EventLogProps.pas' {propEventLog: TFrame},
ShareProps in 'ShareProps.pas' {propShare: TFrame},
UserProps in 'UserProps.pas' {propUser: TFrame},
GroupProps in 'GroupProps.pas' {propGroup: TFrame},
RefsDlg in 'RefsDlg.pas' {dlgRefs},
Splash in 'Splash.pas' {frmSplash},
DeviceProps in 'DeviceProps.pas' {propDevice: TFrame};
{$R *.RES}
begin
Application.Initialize;
frmSplash:=TfrmSplash.Create(Application);
frmSplash.Show;
frmSplash.Update;
Application.Title := 'Computer Information';
Application.CreateForm(TfrmMain, frmMain);
frmSplash.Free;
Application.Run;
end.