Hi,
I want to know, how to get checked changed value from datagridview checkbox cell?
Thanks in advance.
Chris Anderson
Total Post:65
Points:455
Post:14
Points:98Re: DataGridViewCheckBoxColumn
Hi Rohit,
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.