www.pudn.com > mail104s.lzh > ABOUT.PAS


unit About; 
 
interface 
 
uses Windows, Classes, Graphics, Forms, Controls, StdCtrls, 
  Buttons, ExtCtrls; 
 
type 
  TAboutBox = class(TForm) 
    Panel1: TPanel; 
    OKButton: TButton; 
    ProgramIcon: TImage; 
    ProductName: TLabel; 
    Version: TLabel; 
    Copyright: TLabel; 
    Comments: TLabel; 
  private 
    { Private declarations } 
  public 
    { Public declarations } 
  end; 
 
var 
  AboutBox: TAboutBox; 
 
implementation 
 
{$R *.DFM} 
 
end.