//--------------------------------------------------------------------------- // Borland C++Builder // Copyright (c) 1987, 1998 Borland International Inc. All Rights Reserved. //--------------------------------------------------------------------------- TITLE: BCBSMP35 DESCRIPTION: Various C++Builder controls in C++. The controls are prebuilt and installed on the Samples tab in the IDE. DEMONSTRATES: C++Builder controls in C++, control registration, property editor implementation, propery editor registration. COMMENTS: Using PerformanceGraph: Basically there are 2 steps - 1. Call PerformanceGraph1->DataPoint(clRed, 10); (color and plot value) 2. Add a timer control and on each tick call PerformanceGraph1-Update(); The graph will scroll to the left by "StepSize" pixels on each call to Update(). If no data points have been plotted, then it will continue the line as flat, or not display a bar, depending on the current display style.