LVM_SETTOOLTIPS (Windows CE 5.0)

Send Feedback

This message sets the ToolTip control that the list-view control will use to display ToolTips. You can send this message explicitly or use the ListView_SetToolTips macro.

To send this message, call the SendMessage function.

lResult = SendMessage(   (HWND) hWndControl,   (UINT) LVM_SETTOOLTIPS,   (WPARAM) wParam,    // = 0; not used, must be zero   (LPARAM) lParam     // = (LPARAM) (HWND) hwndToolTip;); 

Parameters

  • wParam
    Must be zero.
  • hwndToolTip
    Handle to the ToolTip control to be set.

Return Values

Returns the handle to the previous ToolTip control.

Requirements

OS Versions: Windows CE 5.0 and later.
Header: Commctrl.h.

See Also

LVM_GETTOOLTIPS | List-View Controls Messages

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.