home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1999 January
/
Chip_1999-01_cd.bin
/
zkuste
/
delphi
/
D1
/
SYSINFO.ZIP
/
SYINFDLG.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1996-01-14
|
2KB
|
69 lines
unit SyInfDlg;
{---------------------------------------------------------------------------------}
{ }
{ TSystemInformationDialog }
{ }
{ A dialogue that shows some information about the current system. }
{ }
{ Freeware. Use it at your own risk. }
{ }
{ S Armstrong 13/1/96 }
{ 100717.3531@compuserve.com }
{---------------------------------------------------------------------------------}
interface
uses
SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
Forms, Dialogs, StdCtrls, Buttons, ExtCtrls, SysInfo;
type
TSystemInformationDlg = class(TForm)
Panel2: TPanel;
Panel3: TPanel;
Label7: TLabel;
Label8: TLabel;
Panel4: TPanel;
Label9: TLabel;
Label10: TLabel;
Panel5: TPanel;
Label14: TLabel;
Bevel1: TBevel;
BitBtn1: TBitBtn;
Panel1: TPanel;
Label1: TLabel;
Label2: TLabel;
SystemInfo1: TSystemInfo;
SystemInfo2: TSystemInfo;
SystemInfo3: TSystemInfo;
SystemInfo4: TSystemInfo;
SystemInfo5: TSystemInfo;
SystemInfo6: TSystemInfo;
SystemInfo7: TSystemInfo;
Label3: TLabel;
SystemInfo10: TSystemInfo;
Label4: TLabel;
SystemInfo11: TSystemInfo;
Label5: TLabel;
SystemInfo12: TSystemInfo;
Panel6: TPanel;
Label6: TLabel;
Label16: TLabel;
Label11: TLabel;
Label12: TLabel;
SystemInfo15: TSystemInfo;
SystemInfo14: TSystemInfo;
SystemInfo9: TSystemInfo;
SystemInfo13: TSystemInfo;
private
{ Private declarations }
public
{ Public declarations }
end;
implementation
{$R *.DFM}
end.