home *** CD-ROM | disk | FTP | other *** search
/ Delphi 4 Bible / Delphi_4_Bible_Tom_Swan_IDG_Books_1998.iso / source / Mdidemo2 / ABOUT.PAS < prev    next >
Pascal/Delphi Source File  |  1998-04-13  |  481b  |  33 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.     Comments: TLabel;
  18.   private
  19.     { Private declarations }
  20.   public
  21.     { Public declarations }
  22.   end;
  23.  
  24. var
  25.   AboutForm: TAboutForm;
  26.  
  27. implementation
  28.  
  29. {$R *.DFM}
  30.  
  31. end.
  32.  
  33.