home *** CD-ROM | disk | FTP | other *** search
- unit About;
-
- { This is a dialog wrapped in the ABOUTDLG unit
- not intended to be used as a standalone unit.
-
- Do not install this unit, install ABOUTDLG.
- }
-
- interface
-
- uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, StdCtrls,
- Buttons, ExtCtrls;
-
- type
- TAboutBox = class(TForm)
- Panel1: TPanel;
- ProgramIcon: TImage;
- ProductName: TLabel;
- Version: TLabel;
- Copyright: TLabel;
- Comments: TLabel;
- Button1: TButton;
- Label1: TLabel;
- Label2: TLabel;
- WinVersion: TLabel;
- DosVersion: TLabel;
- Label3: TLabel;
- Coprocessor: TLabel;
- Label4: TLabel;
- CPU: TLabel;
- Label5: TLabel;
- FreeMemory: TLabel;
- Label6: TLabel;
- FreeResources: TLabel;
- Label8: TLabel;
- UserName: TLabel;
- Label10: TLabel;
- CompanyName: TLabel;
- Label9: TLabel;
- FreeDisk: TLabel;
- procedure Button1Click(Sender: TObject);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- AboutBox: TAboutBox;
-
- implementation
-
- {$R *.DFM}
-
-
- procedure TAboutBox.Button1Click(Sender: TObject);
- begin
- Close
- end;
-
- end.
-
-