home *** CD-ROM | disk | FTP | other *** search
/ Delphi 5 for Professionals / DELPHI5.iso / AddOns / Components / TEECHART / DELPHI3.EXE / %MAINDIR% / Examples / Delphi3 / Virtual DataSet / Readme.txt < prev    next >
Encoding:
Text File  |  1998-11-17  |  2.2 KB  |  78 lines

  1. ==========================================================
  2.                TeeChart Pro 4.0
  3.       Copyright 1995-1998 by David Berneda. 
  4.              All Rights Reserved.
  5. ==========================================================
  6.  
  7.      TeeChart virtual DataSet
  8. =============================================
  9.  
  10. This example shows the new TSeriesDataSet component in action !
  11.  
  12. 1 -- Introduction
  13. 2 -- Explanation
  14. 3 -- Testing
  15. 4 -- Additional information
  16.  
  17. ---------------------------------------------------------
  18.  
  19. 1 -- Introduction
  20. -----------------
  21.  
  22. With Delphi 3 and 4 the TDataSet component is completely abstract.
  23. That means everything important is VIRTUAL, and, more important,
  24. the TDataSet component does not need the BDE (Borland Database
  25. Engine).
  26.  
  27. With some work it's possible to create derived TDataSet components
  28. to suite your needs or to extend the Delphi database architecture.
  29.  
  30. The TSeriesDataSet component is an example of reusing the
  31. TDataSet for an specific case.
  32.  
  33. 2 -- Explanation
  34. ------------------
  35.  
  36. What's it for ?
  37.  
  38. The TSeriesDataSet will provide you all data values on a Series
  39. component.
  40. You can connect a standard TDataSource, TDBGrid and any other
  41. suitable DB component to it.
  42.  
  43. This is very useful to show or edit the Series data values as
  44. if the Series was connected to a Table.
  45.  
  46.  
  47. 3 -- Testing
  48. ------------------
  49.  
  50. When you install TeeChart-Pro, you'll find the TSeriesDataSet
  51. component located at the "TeeChart" tab on Delphi's component
  52. palette.
  53.  
  54. Drop it on a Form, set the Series property to any existing 
  55. Series in your Charts, and set the Active property to True.
  56.  
  57. That's it !
  58.  
  59. Now you can drop a TDataSource and a TDBGrid components and
  60. connect them as usually.
  61.  
  62. As soon you add point values to the Chart Series, the SeriesDataSet
  63. will refresh the DBGrid, and vice-versa.
  64.  
  65. 4 -- Additional information
  66. ----------------------------
  67.  
  68. See the included DEMO1 and DEMO2 example projects for 
  69. an example of TSeriesDataSet.
  70.  
  71. Delphi 3 and 4 come with an example of a virtual DataSet 
  72. for component writers.
  73.  
  74. You can find this example at:
  75.  
  76. \Delphi 3(4)\Demos\DB\TEXTDATA\Textdata.pas
  77.  
  78. --------------------------------------------------------------------