VB.net Reading from ListViews with Multiple Columns
- by xzerox
Alright. So I was able to find out how to read from the first column but I need to read from both of them. I am using full row select which I need on there.
Here is the code I am using to get it for the first column.
Dim I As Integer
For I = 0 To ListView1.SelectedItems.Count - 1
MsgBox(ListView1.SelectedItems(I).Text)
Next
MessageBox.Show(ListView1.Columns(0).Text)