The text of the column (s) is in the SubItem array of the list item.
so you do something like ... (VB is not my first language, so it is not verified)
dim i as Integer
dim item as ListViewItem
for i = 0 to ListView1.SelectedItems.Count -1
item = ListView1.SelectedItems(i)
Console.WriteLine(Col1 = {0} Col2 = {1},item.SubItems(0),item.SubItems(1))
next
(note, it is usually not recommended to pop up a message box in a loop)
source
share