home *** CD-ROM | disk | FTP | other *** search
/ Chip 1999 March / Chip_1999-03_cd.bin / zkuste / delphi / INFO / DI9806JP.ZIP / About.pas < prev    next >
Pascal/Delphi Source File  |  1997-12-04  |  480b  |  32 lines

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