www.pudn.com > byyl.rar > aboutUnit.pas, change:2000-11-19,size:657b


unit aboutUnit; 
 
interface 
 
uses Windows, SysUtils, Classes, Graphics, Forms, Controls, StdCtrls, 
  Buttons, ExtCtrls; 
 
type 
  TAboutBox = class(TForm) 
    OKButton: TButton; 
    ProductName: TLabel; 
    Version: TLabel; 
    ProgramIcon: TImage; 
    Copyright: TLabel; 
    Comments: TLabel; 
    Bevel1: TBevel; 
    Label1: TLabel; 
    Label2: TLabel; 
    procedure OKButtonClick(Sender: TObject); 
  private 
    { Private declarations } 
  public 
    { Public declarations } 
  end; 
 
var 
  AboutBox: TAboutBox; 
 
implementation 
 
{$R *.DFM} 
 
procedure TAboutBox.OKButtonClick(Sender: TObject); 
begin 
   close; 
end; 
 
end.