I have a ListView with three columns. The first two are text and third is numeric.
I need to get the value from column three (subitem(2)). Here is what I've triedBut, I got this error message: "Value of type 'System.Windows.Forms.ListViewItem' cannot be converted to 'String'."Code:Messagebox.Show(lvwAddresses.SelectedItems.Item(2)
So, I triedThen I got this error message: "Name item is not declared."Code:MessageBox.Show(lvwAddresses.SelectedItems.ToString(Item(2)))
So, how would I get that?




Reply With Quote