Hi,
I want to know, how to get checked changed value from datagridview checkbox cell?
Thanks in advance.
DataGridViewCheckBoxColumn
Ask by Chris Anderson
Updated 17 Dec 2011
you can use the following code to get the checked changed value from the datagridview checkbox cell:
bool result = Convert.ToBoolean(datagridView1.Rows[r].Cells[c].EditedFormattedValue);
I think this will help you.