home *** CD-ROM | disk | FTP | other *** search
- unit About;
-
- interface
-
- uses
- Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
- StdCtrls, ComCtrls, ExtCtrls, Buttons;
-
- type
- TAboutForm = class(TForm)
- PageControl1: TPageControl;
- TabSheet1: TTabSheet;
- TabSheet2: TTabSheet;
- TabSheet3: TTabSheet;
- Memo1: TMemo;
- Memo2: TMemo;
- Label1: TLabel;
- Label3: TLabel;
- Label2: TLabel;
- Label4: TLabel;
- Label5: TLabel;
- Label6: TLabel;
- Panel1: TPanel;
- BitBtn1: TBitBtn;
- Bevel1: TBevel;
- procedure BitBtn1Click(Sender: TObject);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- AboutForm: TAboutForm;
-
- implementation
-
- {$R *.DFM}
-
-
- procedure TAboutForm.BitBtn1Click(Sender: TObject);
- begin
- close;
- end;
-
- end.
-
-