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 tried
Code:
Messagebox.Show(lvwAddresses.SelectedItems.Item(2)
But, I got this error message: "Value of type 'System.Windows.Forms.ListViewItem' cannot be converted to 'String'."

So, I tried
Code:
MessageBox.Show(lvwAddresses.SelectedItems.ToString(Item(2)))
Then I got this error message: "Name item is not declared."

So, how would I get that?