home *** CD-ROM | disk | FTP | other *** search
/ Delphi 5 for Professionals / DELPHI5.iso / AddOns / Components / TEECHART / Delphi1_And_Delphi2 / EXAMPLES / PACMAN / UABOUT.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1998-10-24  |  656 b   |  39 lines

  1. unit Uabout;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, Dialogs, StdCtrls, Buttons, ExtCtrls;
  8.  
  9. type
  10.   TAboutTeePac = class(TForm)
  11.     Image1: TImage;
  12.     Label1: TLabel;
  13.     Label2: TLabel;
  14.     Label3: TLabel;
  15.     Label4: TLabel;
  16.     Label5: TLabel;
  17.     BitBtn1: TBitBtn;
  18.     Label10: TLabel;
  19.     procedure BitBtn1Click(Sender: TObject);
  20.   private
  21.     { Private declarations }
  22.   public
  23.     { Public declarations }
  24.   end;
  25.  
  26. var
  27.   AboutTeePac: TAboutTeePac;
  28.  
  29. implementation
  30.  
  31. {$R *.DFM}
  32.  
  33. procedure TAboutTeePac.BitBtn1Click(Sender: TObject);
  34. begin
  35.   Close;
  36. end;
  37.  
  38. end.
  39.