home *** CD-ROM | disk | FTP | other *** search
/ Delphi 5 for Professionals / DELPHI5.iso / AddOns / Components / TEECHART / DELPHI3.EXE / %MAINDIR% / Examples / Delphi3 / Remote Data / Uremote.pas < prev   
Encoding:
Pascal/Delphi Source File  |  1998-11-17  |  733 b   |  41 lines

  1. unit Uremote;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   StdCtrls, TeEngine, Series, ExtCtrls, TeeProcs, Chart, DBChart, DBClient,
  8.   Db;
  9.  
  10. type
  11.   TForm1 = class(TForm)
  12.     ClientDataSet1: TClientDataSet;
  13.     RemoteServer1: TRemoteServer;
  14.     DBChart1: TDBChart;
  15.     Series1: THorizBarSeries;
  16.     Label1: TLabel;
  17.     Label2: TLabel;
  18.     Button1: TButton;
  19.     Label3: TLabel;
  20.     procedure Button1Click(Sender: TObject);
  21.   private
  22.     { Private declarations }
  23.   public
  24.     { Public declarations }
  25.   end;
  26.  
  27. var
  28.   Form1: TForm1;
  29.  
  30. implementation
  31.  
  32. {$R *.DFM}
  33.  
  34. procedure TForm1.Button1Click(Sender: TObject);
  35. begin
  36.   ClientDataSet1.Open;
  37. end;
  38.  
  39.  
  40. end.
  41.