Re: getIndex() and ListView
- Posted by Euman <euman at bellsouth.net> Jun 14, 2001
- 347 views
CORRECTION ! ! ! Here's a mask for full line selection with grids (like Excel), oneclick and a pointing finger mouse if this helps? atom lvMask lvMask = or_all({LVS_EX_FULLROWSELECT,LVS_EX_HEADERDRAGDROP,LVS_EX_GRIDLINES,LVS_EX_ONECL ICKACTIVATE, LVS_EX_TRACKSELECT }) constant ListView? = create(ListView, "", hWnd, x, y,cx, cy, or_all({LVS_REPORT,LVS_SHOWSELALWAYS})) object junk junk = sendMessage( ListView?, LVM_SETEXTENDEDLISTVIEWSTYLE, lvMask, lvMask) dont forget ListView? should be the ListView your useing Euman euman at bellsouth.net