Ok, so I have six Colums that are all loaded into the DataGridView, each coloumn as info in it. How could I get the text of each selected item in the 2 column?

Somthing like.

Code:
foreach(object item in this.DGV.SelectedItemsINCol2)
{
MessageBox.Show(item.ToString());
}
Thanks