News:

MASM32 SDK Description, downloads and other helpful links
MASM32.com New Forum Link
masmforum WebSite

Listview tooltips

Started by Mr Earl, December 11, 2007, 03:23:35 PM

Previous topic - Next topic

Mr Earl

The ListView used by Microsoft Windows Explorer shows tool tips when a particular item is partly visible, saving the user the task of scrolling or resizing.
Has anyone done that using MASM?

akane

Hi,
invoke SendMessage, hwnd, LVM_SETEXTENDEDLISTVIEWSTYLE, LVS_EX_LABELTIP, LVS_EX_LABELTIPwill do this.

Mr Earl

Thanks akane, couldn't be any easier than that.  Works well.