Hi,
Assuming your grid is called dataGridView1 try,
string
addressValue = dataGridView1.CurrentRow.Cells["Address"].Value.ToString();
Of course in real code you'd need to make sure CurrentRow was not null before you attempted to access it'sCells property, and the above code assumes the name of the column is "Address"... you might need to change that depending on what you named the column.