i want to run CellEndEdit only when value of cell is changed, tried putting
if (dataGridView.Rows[e.RowIndex].Cells[e.ColumnIndex].Value.ToString() == e.FormattedValue.ToString())
return;
in CellValidation event, the Cell Validation event does return but CellEndEdit also gets executed and updates, updated date
& by
fields when the user has only gone into edit mode and came out without changing the value cell.
By the time CellEndEdit is reached CellValue
& Formatted Value
are same so couldn't put this in CellEndEdit.
A trivial solution is to set a flag in CellValidation and return CellEndEdit when flag is set, but this appears to be a error-prone solution as there are about 10 girds on the form. So 10 flags?
But if you want to compute the value edited, you can use the suggested issue by J.Fisher like:
I made it like so:
C#:
VB.Net:
I tried like 1 hour to archieve this, because no one had a solution for that, so I thought it might be useful for others
You could definitely get there by catching the current cell value in
CellBeginEdit
, then comparing it to the current cell value inCellEndEdit
. (Or use yourCellValidation
trick.)To avoid "multiple flags", you could use a
Dictionary<DataGridView,object>
so you can key into the dictionary with the current event's grid, then get or set the appropriate value.Instead of performing your tasks in CellEndEdit, put them in CellValueChanged. It is fired only when cell value is changed. Please note that it will fire when your DataGridViews are initially populated, but to handle that, you can put just one variable saying formInitialized or something, to make sure that you are not executing your CellEndEdit when you populate your data grids.
And to answer your question, there is no way to figure out if value is changed when CellEndEdit is fired, because it is always fired when cell gets out of edit mode. The only solution is, like you proposed, to store the old value externally, but you already noticed why is that bad (though it works really good in most of the cases).