www.pudn.com > 701.rar > Unit7.pas


unit Unit7; 
 
interface 
 
uses 
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, 
  Dialogs, StdCtrls, ExtCtrls; 
 
type 
  Tabout = class(TForm) 
    Panel1: TPanel; 
    Button1: TButton; 
    Label1: TLabel; 
    Label3: TLabel; 
    Label4: TLabel; 
    Label6: TLabel; 
    Label7: TLabel; 
    procedure Button1Click(Sender: TObject); 
  private 
    { Private declarations } 
  public 
    { Public declarations } 
  end; 
 
var 
  about: Tabout; 
 
implementation 
 
{$R *.dfm} 
 
procedure Tabout.Button1Click(Sender: TObject); 
begin 
    close; 
 
end; 
 
end.