I have a form with a listview in it. I want the values of every column for the itemselected to show up in a message box when the item is double clicked.
So far, I can only get the value in column 1 to show up:
Private Sub ListView1_dblclick()
MsgBox ListView1.SelectedItem
End Sub
How do I reference the other columns?
So far, I can only get the value in column 1 to show up:
Private Sub ListView1_dblclick()
MsgBox ListView1.SelectedItem
End Sub
How do I reference the other columns?