Professional UI Solutions
Site Map   /  Register
 
 

Forum

Please Log In to post a new message or reply to an existing one. If you are not registered, please register.

NOTE: Some forums may be read-only if you are not currently subscribed to our technical support services.

Forums » Prof-UIS General Discussion » How to enable tooltip for tab through OnTabWndMouseTrackingHoverStart. Collapse All
Subject Author Date
MUKESH GUPTA Jan 28, 2013 - 2:26 AM

Hi Team,

We have already raised a query in which Japanese characters getting corrupted, but as of now we don’t get any solution for this problem from Your side.

However we have decided to provide tool tip for tabs to customer as a work around.

Following are the code for this implementation:

class CResultTabbedContainer :
public CExtTabPageContainerOneNoteWnd
{
     class CMyTabWndOneNote : public CExtTabOneNoteWnd
{



virtual bool OnTabWndMouseTrackingHoverStart(LONG nHitTest)
{
bool bRet = CExtTabOneNoteWnd::OnTabWndMouseTrackingHoverStart(nHitTest);
CExtTabOneNoteWnd::EnableToolTips(true);
return bRet;
}
}
}

Above code is getting hit when we move our cursor on tab but tool tip functionality is not comming.

please suggest the correct way of doing it.

Thanks in advance..