(However, everything works as I intend, and my cut / copy / delete stuff acts upon all of the rows that I have selected.) This all works, and I can select and act upon single or multiple rows.īut here's the ISSUE => When I use the normal Click-Hold-Drag mouse-rectangle to select the rows I want, ONLY the selected items in Column 1 are 'sensitive' to the mouse-rectangle, and only they turn the Selected-Blue-Color. My ListView has 3 columns, the first is a narrow column in which I put the row number, and the other 2 columns contain the data I want to look at and act upon. _GUICtrlListView_SetExtendedListViewStyle($LV_List, BitOR($LVS_EX_GRIDLINES, $LVS_EX_DOUBLEBUFFER)), $LVS_EX_FULLROWSELECT))
$LV_List = GUICtrlCreateListView('', 5, 45, 602, 400, BitOR($LVS_SHOWSELALWAYS, $LVS_REPORT))
So, I have this nicely working script that operates on a ListView - cut / past / copy / delete all work fine.