Hi
I have enabled multiselect in my listview. My problem is that when I click inside the listview but not on a item
to false
My problem is the following
lets say I have 10 items in my list. I click on the first item
then i click below all 10 items select the 3 last items (my clicking and dragging the mouse)
What happends now is that the last 3 is selected but also the first item.
how can I avoid this?
I only want the last 3 to be selected
help is appreciated
I have enabled multiselect in my listview. My problem is that when I click inside the listview but not on a item
Code:
. Set oListItem = ListView3.HitTest(X, y) oListItem is nothing. This is ok. So i set all the selected property in the listview
Code:
dim i as integer for i=1 to ListView1.ListItems.Count ListView1.ListItems.item(index).Selected = False next
lets say I have 10 items in my list. I click on the first item
then i click below all 10 items select the 3 last items (my clicking and dragging the mouse)
What happends now is that the last 3 is selected but also the first item.
how can I avoid this?
I only want the last 3 to be selected
help is appreciated
Comment