home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 2000 March / pcp161b.iso / full / delphi / RUNIMAGE / DELPHI30 / DEMOS / TEECHART / SPECS.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1997-08-04  |  989 b   |  49 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.     Panel1: TPanel;
  19.     BitBtn1: TBitBtn;
  20.     Panel2: TPanel;
  21.     Label1: TLabel;
  22.     Image2: TImage;
  23.     BitBtn2: TBitBtn;
  24.     procedure BitBtn2Click(Sender: TObject);
  25.   private
  26.     { Private declarations }
  27.   public
  28.     { Public declarations }
  29.   end;
  30.  
  31. implementation
  32.  
  33. {$R *.DFM}
  34. Uses TeeAbout;
  35.  
  36. procedure TChartSpecs.BitBtn2Click(Sender: TObject);
  37. begin
  38.   With TTeeAboutForm.Create(Self) do
  39.   try
  40.     ShowModal;
  41.   finally
  42.     Free;
  43.   end;
  44. end;
  45.  
  46.  
  47.  
  48. end.
  49.