home *** CD-ROM | disk | FTP | other *** search
/ Delphi 4 Bible / Delphi_4_Bible_Tom_Swan_IDG_Books_1998.iso / source / CHARGRID / ABOUT.PAS < prev    next >
Pascal/Delphi Source File  |  1998-04-13  |  458b  |  32 lines

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