Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How can i change default Hint Window?

Status
Not open for further replies.

mbekle

Programmer
Feb 22, 2003
3
TR
I'm using Borland C++ Builder 6.

1 - I write following codes in "Unit1.h"
-------------------------------------------
class TNewHintWindow : public THintWindow
{

};
--------------------------------------------

2 - I write following codes in "Unit1.cpp"
--------------------------------------------
__fastcall TForm1::TForm1(TComponent* Owner)
: TForm(Owner)
{

HintWindowClass = __classid(TNewHintWindow);
}
--------------------------------------------

When I running the application, that error shows :
"[Linker Error] Unresolved external '__fastcall Controls::THintWindow::NCPaint(void *)' referenced from C:\PROGRAM FILES\BORLAND\CBUILDER6\PROJECTS\UNIT1.OBJ"


How can I solve this problem?

Thanks for your helps...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top