Have loaded a listview and want to return the record number from the selected index. Have tried this but it returns only a 0
Any help is great. thank you.
Code:
Private Sub lvwDisplay_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles lvwDisplay.Click
MsgBox(CInt(lvwDisplay.SelectedItems(0).Text))
End Sub
Any help is great. thank you.