Re:am I paying for past crimes against components?
"Remy Lebeau [TeamB]" <gambi...@yahoo.com> wrote:
Quote
>Do you, by chance, have an older version of the package
>located on your system elsewhere?
Further problems. By doing the dance of removing, deleting,
reopening, compiling, installing I seem to be able to get
some changes to take in the component, but not others.
I have a property called FtimeSteps. In the component
constructor setTimeSteps(100) gets called. If I change this to
setTimeSteps(99) then do the installation dance, I can see that
the property is set to 99 not 100. A new strip chart dropped on to a form has the property set to 99. However there is a method that does not show up during code completion for this component.
stripChart1->clearChart()
is not shown. addDataPoint, and drawChart are.
TstripChart.h
..
public:
void __fastcall addDataPoint(int index, double dataPoint);
void __fastcall drawChart();
void __fastcall clearChart();
__fastcall TstripChart(TComponent* Owner);
So I know that changes are being made and the new component is
being installed (I can see that FtimeSteps changes), But the
method clearChart is not an available method of the component.
I can not explain why this is?
Andy