home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 April / Chip_1997-04_cd.bin / prezent / cb / data.z / ABOUT.PAS < prev    next >
Pascal/Delphi Source File  |  1997-01-16  |  629b  |  39 lines

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