AddSeries linker error
Posted: Tue Mar 22, 2011 3:06 pm
I'm converting an old project from BCB6 to C++ Builder RAD XE. Everywhere in my project where I add a series at runtime to a chart, I get a linker error. The code looks like this:
TLineSeries *ser;
ser = (TLineSeries *) Chartfx1->AddSeries(__classid(TLineSeries));
And produces the error
[ILINK32 Error] Error: Unresolved external '__fastcall Teengine::TCustomAxisPanel::AddSeries(const System::TMetaClass * const)' referenced from TRENDPLOT.OBJ
What am I doing wrong?
TLineSeries *ser;
ser = (TLineSeries *) Chartfx1->AddSeries(__classid(TLineSeries));
And produces the error
[ILINK32 Error] Error: Unresolved external '__fastcall Teengine::TCustomAxisPanel::AddSeries(const System::TMetaClass * const)' referenced from TRENDPLOT.OBJ
What am I doing wrong?