listview selected item

  • Thread starter Thread starter Steve
  • Start date Start date
S

Steve

I can't seem to get howto find the index of the selected item in a listview
(View.Details)....

Thanks in advance,
steve
 
I can't seem to get howto find the index of the selected item in a
listview
(View.Details)....

Try

Dim item1 As ListViewItem = listView1.Items( e.Index )
 
* "Steve said:
I can't seem to get howto find the index of the selected item in a listview
(View.Details)....

Have a look at the control's 'SelectedIndices' property.
 
Back
Top