Assuming a reference to a DataGridView control has been established in the "dgv" variable:
Dim Row as DataGridViewRow
Dim Col2Str as String
For Each Row in dgv.SelectedRows
Col2Str = Row.Cells(2).Value.ToString
...
Next Row
And that's the clumn whose index is 2, which is usually the third column.
Hope this helps.