Pregunta

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 hay solución correcta

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top