I have a listview with 2 colums, 50 items are in the listview. Coloumn1 = Server Names, Column2 = IP Addresses.
How do I retrieve the text in both columns?
dim lvwItem as listview.item
for each lvwItem in listview.items
msgbox lvwItem.text
next
this just displays the text in column one, how do I display the text in column2? Thank you.
