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

  1. unit Uteehelp;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, Dialogs, StdCtrls, Buttons;
  8.  
  9. type
  10.   TTeeHelp = class(TForm)
  11.     BitBtn1: TBitBtn;
  12.     Memo1: TMemo;
  13.   private
  14.     { Private declarations }
  15.   public
  16.     { Public declarations }
  17.   end;
  18.  
  19. var
  20.   TeeHelp: TTeeHelp;
  21.  
  22. implementation
  23.  
  24. {$R *.DFM}
  25.  
  26. end.
  27.