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 Tech Support » Balloon vs. Rectangle tooltip location Collapse All
Subject Author Date
Offer Har Aug 15, 2011 - 2:33 AM

Dear Support,


The balloon tooltip is always displayed above the control it is linked to. The rectangle tooltip is displayed where the cursor is. Is there any way of making the rectangle tooltip display always above the control just like the balloon?


Thanks,


Ron.

Technical Support Aug 15, 2011 - 7:30 AM

You can invert the tooltip postion using the following code:

CExtPopupMenuTipWnd * pTip = . . .
    pTip->SetTipStyle( CExtPopupMenuTipWnd::__ETS_INV_RECTANGLE_NO_ICON )
You can increase the tooltip distance by specifying a larger rectangle in parameters of
CExtPopupMenuTipWnd::Show()
method.

Offer Har Aug 17, 2011 - 12:32 AM

Thanks.