QHTM_EnableCooltips
BOOL WINAPI QHTM_EnableCooltips( HINSTANCE hInstance );
CoolTips are standard ToolTips but instead of plain text you can use HTML. Calling this function will enable CoolTips in an application that previously used standard Win32 tooltips.
Applications that use the 80 byte buffer to transfer tooltip text to the Win32 tooltip control may truncate the HTML passed and for that reason
you may need to modify your application to use the lpszText
member of the TOOLTIPTEXT
structure instead.
Parameters
- hInstance
- The HINSTANCE of the calling process.
Return value
non-zero if it succeeds.
Example
QHTM_EnableCooltips( hInstance );
See also None