P PocketPC Jul 8, 2004 #1 Hi, how can I know the listviewitem index is selected in a listview? Thanks in advance
N Neil Cowburn [MVP] Jul 8, 2004 #2 Check the SelectedIndexCollection exposed by the ListView.SelectedIndices property. HTH Neil
G Guest Jul 9, 2004 #3 for example Dim JpCustName As String = lstJourney.Items(lstJourney.SelectedIndices(0)).SubItems(3).Text()
for example Dim JpCustName As String = lstJourney.Items(lstJourney.SelectedIndices(0)).SubItems(3).Text()