I have TeeChart Pro v2012.05.120327 32bit VCL and BCB XE 2 running on Windows 7.
I created the following class:
// .h file
Code: Select all
class TMyRectangleTool : public TRectangleTool
{
protected:
public:
__fastcall TMyRectangleTool(TComponent * Owner);
};
Code: Select all
//---------------------------------------------------------------------------
__fastcall TMyRectangleTool::TMyRectangleTool(TComponent * Owner)
: TRectangleTool(Owner)
{
}
Where does DrawTextW come from? How do I go around this link error?[ILINK32 Error] Error: Unresolved external '__fastcall Vcltee::Teetools::TTextShape::DrawTextW(Vcltee::Teengine::TCustomAxisPanel *, System::Types::TRect&, int, int, int)' referenced from C:\MY PROJECTS BCB XE2\MY CPP\CHART TOOLS\WIN32\DEBUG\UNIT1.OBJ
Thanks
-Bill