home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / Delphi.5 / Samples / sourceD5 / browutil.exe / BROWSER / ABOUT.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1999-03-07  |  444 b   |  30 lines

  1. unit About;
  2.  
  3. interface
  4.  
  5. uses Windows, SysUtils, Classes, Graphics, Forms, Controls, StdCtrls,
  6.   Buttons, ExtCtrls;
  7.  
  8. type
  9.   TAboutBox = class(TForm)
  10.     OKButton: TButton;
  11.     Bevel1: TBevel;
  12.     ProgramIcon: TImage;
  13.     LblProductName: TLabel;
  14.     LblVersion: TLabel;
  15.   private
  16.     { Private declarations }
  17.   public
  18.     { Public declarations }
  19.   end;
  20.  
  21. var
  22.   AboutBox: TAboutBox;
  23.  
  24. implementation
  25.  
  26. {$R *.DFM}
  27.  
  28. end.
  29.  
  30.