home *** CD-ROM | disk | FTP | other *** search
- unit Uabout;
-
- interface
-
- uses
- SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
- Forms, Dialogs, StdCtrls, Buttons, ExtCtrls;
-
- type
- TAboutTeePac = class(TForm)
- Image1: TImage;
- Label1: TLabel;
- Label2: TLabel;
- Label3: TLabel;
- Label4: TLabel;
- Label5: TLabel;
- BitBtn1: TBitBtn;
- Label10: TLabel;
- procedure BitBtn1Click(Sender: TObject);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- AboutTeePac: TAboutTeePac;
-
- implementation
-
- {$R *.DFM}
-
- procedure TAboutTeePac.BitBtn1Click(Sender: TObject);
- begin
- Close;
- end;
-
- end.
-