home *** CD-ROM | disk | FTP | other *** search
- 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.
-