T
tmaster
In a listview (named lvwToDo), I understand how to reference a single
selected item from the SelectedItems collection, but is there a more direct
way if MultiSelect is set to false and you know there is only one item
selected? In other words, is there a better way other than the following
loop?
Dim litem As ListViewItem
For Each litem In lvwToDo.SelectedItems
...do whatever with litem
Next
Thanks again.
selected item from the SelectedItems collection, but is there a more direct
way if MultiSelect is set to false and you know there is only one item
selected? In other words, is there a better way other than the following
loop?
Dim litem As ListViewItem
For Each litem In lvwToDo.SelectedItems
...do whatever with litem
Next
Thanks again.