How do I get the index of the currently selected Item in a vb.net listview?
Printable View
How do I get the index of the currently selected Item in a vb.net listview?
As long as only one item is selected then
ListView1.SelectedItems(0).Index
will give you the one that is selected. If there are more than one selected then ListView1.SelectedItems(0).Index will give you the first one, ListView1.SelectedItems(1).Index will give you the second one and so on.