The MASM Forum Archive 2004 to 2012

General Forums => The Workshop => Topic started by: Mr Earl on December 11, 2007, 03:23:35 PM

Title: Listview tooltips
Post by: Mr Earl on December 11, 2007, 03:23:35 PM
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?
Title: Re: Listview tooltips
Post by: akane on December 11, 2007, 07:49:14 PM
Hi,
invoke SendMessage, hwnd, LVM_SETEXTENDEDLISTVIEWSTYLE, LVS_EX_LABELTIP, LVS_EX_LABELTIPwill do this.
Title: Re: Listview tooltips
Post by: Mr Earl on December 11, 2007, 08:55:24 PM
Thanks akane, couldn't be any easier than that.  Works well.