G
Guest
I have the following code in a dropdown list to set some cell values. How can
I force a "begin edit" and "end edit" before and after I set each cell value?
I have a bunch of code in the scriptDataGridView_CellEndEdit that needs to
fire for each cell and I am not/cannot use cellchanged for now.
// set new timer value for each row
for (int i = 0; i <= numRows; i++)
{
scriptDataGridView[2, i].Value = newTimerValue.ToString();
}
I force a "begin edit" and "end edit" before and after I set each cell value?
I have a bunch of code in the scriptDataGridView_CellEndEdit that needs to
fire for each cell and I am not/cannot use cellchanged for now.
// set new timer value for each row
for (int i = 0; i <= numRows; i++)
{
scriptDataGridView[2, i].Value = newTimerValue.ToString();
}