www.pudn.com > QQ_FACE.rar > untAbout.pas


unit untAbout; 
 
interface 
 
uses 
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, 
  Dialogs, StdCtrls, Buttons; 
 
type 
  TFrmAbout = class(TForm) 
    BitBtn1: TBitBtn; 
    Label1: TLabel; 
    Label2: TLabel; 
    procedure FormCreate(Sender: TObject); 
    procedure BitBtn1Click(Sender: TObject); 
  private 
    { Private declarations } 
  public 
    { Public declarations } 
  end; 
 
var 
  FrmAbout: TFrmAbout; 
 
implementation 
 
{$R *.dfm} 
 
procedure TFrmAbout.FormCreate(Sender: TObject); 
begin 
   Caption:='¹طسع،­،­'; 
end; 
 
procedure TFrmAbout.BitBtn1Click(Sender: TObject); 
begin 
   self.Close; 
end; 
 
end.