QHTM_OPT_TOOLTIPS
Set or get the state of QHTM tooltips. These are tooltips that appear on URLs.
Parameters
- wParam
- Must be QHTM_OPT_TOOLTIPS .
- lParam
- TRUE or FALSE.
Return value
None
Example
(void)::SendMessage( hwnd, QHTM_SET_OPTION, QHTM_OPT_TOOLTIPS ,(LPARAM)TRUE );
//
// Or use the QHTM message cracker to enable the tooltips
QHTM_SetTooltips( hwnd, TRUE );
//
// Or disable them
QHTM_SetTooltips( hwnd, FALSE );
See also QHTM_GET_OPTION