How to Bind a record from datagridview to winforms controls?
How to bind a selected record value from datagridview to winforms controls using C#.net?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Soft CornerPosted Apr 13, 2011, 8:50 AM
Use CellContentClick event of DataGridView , in this event you will get selected row
DataGridView.Rows[e.RowIndex].Cells[0].Value.ToString() // Here Cells[0] for 1st column
Soft CornerPosted Apr 13, 2011, 7:57 AM
To which control you want to bind selected record of datagridview?