www.pudn.com > LANUpdate_Lite_v0.1_EN_src.zip > About.pas


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