home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 1999 February / DPPCPRO0299.ISO / February / Delphi / Runimage / DELPHI20 / DEMOS / DB / FIND / ABOUT.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1996-06-10  |  384 b   |  27 lines

  1. unit About;
  2.  
  3. interface
  4.  
  5. uses Windows, SysUtils, Classes, Graphics, Forms, Controls, StdCtrls,
  6.   Buttons, ExtCtrls;
  7.  
  8. type
  9.   TfmAboutBox = class(TForm)
  10.     Panel1: TPanel;
  11.     ProgramIcon: TImage;
  12.     ProductName: TLabel;
  13.     Version: TLabel;
  14.     Memo1: TMemo;
  15.     OKButton: TButton;
  16.   end;
  17.  
  18. var
  19.   fmAboutBox: TfmAboutBox;
  20.  
  21. implementation
  22.  
  23. {$R *.DFM}
  24.  
  25. end.
  26.  
  27.