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 » Found how to set balloon tooltip for CExtButton Collapse All
Subject Author Date
steven frierdich Jan 11, 2007 - 12:21 PM

I found out how make a balloon tooltip for the CExtButton. The CExtButton has a public int variable I set to one and that will give me a balloon tooltip. There was no documentation on this I had to dig through the code

steven frierdich Jan 26, 2007 - 11:23 AM

Sure IS

Suhai Gyorgy Jan 12, 2007 - 1:35 AM

In latest documentation, under Reference -> Classes -> CExtButton -> Methods I found these:

- CExtButton::ActivateTooltip: Enables or disables the tooltip.
    void ActivateTooltip( BOOL bEnable = NULL );
...
- CExtButton::SetTooltipText: Sets the tooltip text.
    void SetTooltipText( int nId, BOOL bActivate = NULL);
    void SetTooltipText( CString* spText, BOOL bActivate = NULL);

As you can see, it is documented.