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

  1. {*********************************************}
  2. {  TeeChart Pro 4 example                     }
  3. {  Copyright (c) 1995-1998 by David Berneda   }
  4. {  All rights reserved                        }
  5. {*********************************************}
  6. unit Uform2;
  7.  
  8. interface
  9.  
  10. uses
  11.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  12.   Forms, Dialogs, StdCtrls, Buttons;
  13.  
  14. type
  15.   TFormSecond = class(TForm)
  16.     Label1: TLabel;
  17.     BitBtn1: TBitBtn;
  18.     procedure BitBtn1Click(Sender: TObject);
  19.   private
  20.     { Private declarations }
  21.   public
  22.     { Public declarations }
  23.   end;
  24.  
  25. implementation
  26.  
  27. {$R *.DFM}
  28.  
  29. procedure TFormSecond.BitBtn1Click(Sender: TObject);
  30. begin
  31.   Close;
  32. end;
  33.  
  34. end.
  35.