Hi Everyone,
I am used the datagrid in my application. I found problem when setting the allready checked checkbox set to false. I Tried to set the values to cloumn=0,false but its never checked false,Here is my code
if (Convert.ToBoolean (dtgqueselect[2, e.RowIndex].Value) == true || Convert.ToBoolean ( dtgqueselect[2, e.RowIndex].Value) == false )
{
// MessageBox.Show(dtgqueselect[2, e.RowIndex].Value.ToString ());//---here gets the value true
dtgqueselect[2, e.RowIndex].Value= false ;
//MessageBox.Show(dtgqueselect[2, e.RowIndex].Value.ToString ());//---here gets the value false
}
return;
Can anybody help me........