home *** CD-ROM | disk | FTP | other *** search
/ Delphi 4 Bible / Delphi_4_Bible_Tom_Swan_IDG_Books_1998.iso / source / SYSCOLOR / ABOUTDLG.PAS < prev    next >
Pascal/Delphi Source File  |  1998-04-13  |  523b  |  35 lines

  1. unit Aboutdlg;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Classes, Graphics, Forms, Controls, StdCtrls,
  7.   Buttons, ExtCtrls;
  8.  
  9. type
  10.   TAboutBox = class(TForm)
  11.     Panel1: TPanel;
  12.     OKButton: TBitBtn;
  13.     ProgramIcon: TImage;
  14.     ProductName: TLabel;
  15.     Version: TLabel;
  16.     Copyright: TLabel;
  17.     Comments: TLabel;
  18.     Label1: TLabel;
  19.     Rights: TLabel;
  20.   private
  21.     { Private declarations }
  22.   public
  23.     { Public declarations }
  24.   end;
  25.  
  26. var
  27.   AboutBox: TAboutBox;
  28.  
  29. implementation
  30.  
  31. {$R *.DFM}
  32.  
  33. end.
  34.  
  35.