home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 May / Chip_2002-05_cd1.bin / chplus / cpp / 5 / Komponety.exe / readme.txt < prev    next >
Text File  |  1998-02-09  |  1KB  |  28 lines

  1. //---------------------------------------------------------------------------
  2. // Borland C++Builder
  3. // Copyright (c) 1987, 1998 Borland International Inc.  All Rights Reserved.
  4. //---------------------------------------------------------------------------
  5.  
  6. TITLE:
  7.     BCBSMP35
  8.  
  9. DESCRIPTION:
  10.     Various C++Builder controls in C++. The controls are prebuilt and installed
  11.     on the Samples tab in the IDE.
  12.  
  13. DEMONSTRATES:
  14.    C++Builder controls in C++, control registration, property editor implementation,
  15.    propery editor registration.
  16.  
  17. COMMENTS:
  18.     Using PerformanceGraph:
  19.     Basically there are 2 steps - 
  20.     1. Call PerformanceGraph1->DataPoint(clRed, 10); (color and plot value)
  21.     2. Add a timer control and on each tick call
  22.        PerformanceGraph1-Update();
  23.     The graph will scroll to the left by "StepSize" pixels on each call
  24.     to Update(). If no data points have been plotted, then it will
  25.     continue the line as flat, or not display a bar, depending on the 
  26.     current display style.
  27.  
  28.