Question

For Each i As ListViewItem In Me.lvSent.Items

            If i.Checked = True Then
                i.Selected = True
            Else
                i.Selected = False

            End If
        Next

Using that code I can select items in my listview but when I unchecked one selected item, It unchecked all selected items.

How can I uncheck other selected item without unchecking everything

thanks

No correct solution

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top