I have the listview. I would like to display the filename and the path location in the textbox when I select the list from the listview. Any idea? Just want to learn how I can read the list items from listview and show it in the 2 textbox.Have a sample to test with ?
text1.text = filename
text2.text = path location.
Code:For i = 1 To ListView1.ListItems.Count If ListView1.ListItems.Item(i).Selected Then 'what should I do End If Next i


Reply With Quote
