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?
Hi,
invoke SendMessage, hwnd, LVM_SETEXTENDEDLISTVIEWSTYLE, LVS_EX_LABELTIP, LVS_EX_LABELTIP
will do this.
Thanks akane, couldn't be any easier than that. Works well.