[CODE]If ListView1.SelectedItems.Count > 0 Then
Dim test3 As ListViewItem = ListView1.SelectedItems.Item(0)
If test3.Selected = True Then
test = test3.Index ' index number selected
End If
End If[/CODE]
On a side note, if you're only interested in the index, SelectedIndices
might save you the time to create the ListViewItem and get the index from
it.