Hi,
Handle Cell_click event of DataGridView and implement it as follows
[Code language = C#]
private void dataGridView1_CellClick(object sender, DataGridViewCellEventArgs e)
{
MessageBox.Show(dataGridView1.Rows[e.RowIndex].Cells[e.ColumnIndex].Value.ToString());
}
[/Code]
This will give u,what u wanted.
Thanx,
Ch.T.Gopi Kumar.