home *** CD-ROM | disk | FTP | other *** search
/ PC Expert 29 / Pce29cd.iso / RUNIMAGE / DELPHI40 / DEMOS / TEECHART / SPECS.PAS < prev    next >
Pascal/Delphi Source File  |  1998-06-16  |  1KB  |  48 lines

  1. {*********************************************}
  2. { TeeChart Delphi Component Library           }
  3. { Chart Specs Form Demo                       }
  4. { Copyright (c) 1995-1996 David Berneda       }
  5. { All rights reserved                         }
  6. {*********************************************}
  7. unit Specs;
  8.  
  9. interface
  10.  
  11. uses
  12.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  13.   Forms, Dialogs, StdCtrls, Buttons, ExtCtrls;
  14.  
  15. type
  16.   TChartSpecs = class(TForm)
  17.     Memo1: TMemo;
  18.     Panel2: TPanel;
  19.     Label1: TLabel;
  20.     Image2: TImage;
  21.     BitBtn1: TBitBtn;
  22.     Panel1: TPanel;
  23.     Memo2: TMemo;
  24.     BitBtn2: TBitBtn;
  25.     procedure BitBtn2Click(Sender: TObject);
  26.   private
  27.     { Private declarations }
  28.   public
  29.     { Public declarations }
  30.   end;
  31.  
  32. implementation
  33.  
  34. {$R *.DFM}
  35. Uses TeeAbout;
  36.  
  37. procedure TChartSpecs.BitBtn2Click(Sender: TObject);
  38. begin
  39.   With TTeeAboutForm.Create(Self) do
  40.   try
  41.     ShowModal;
  42.   finally
  43.     Free;
  44.   end;
  45. end;
  46.  
  47. end.
  48.