home *** CD-ROM | disk | FTP | other *** search
/ Delphi 5 for Professionals / DELPHI5.iso / AddOns / Components / TEECHART / Delphi1_And_Delphi2 / EXAMPLES / STANDARD / SPECS.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1998-10-24  |  939 b   |  43 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.   TeeShowAboutBox(True);
  40. end;
  41.  
  42. end.
  43.