I am working on a Winforms app that displays a DataGridView, bound to some database table.
It allows inserting fresh entries in to it, and does some data validation.
When a required column is left blank, or one of the unique constraints is violated, the DataError event calls this function:
protected void _data_error(object sender, DataGridViewDataErrorEventArgs e)
{
MessageBox.Show(this,e.Exception.Message,"Error");
e.ThrowException = false;
e.Cancel = false;
}
When the popup is closed, the new row that was being edited is removed.
When this is done to a row that has already been saved (an update operation) the row loses its changes and loses focus.
I assume this means I need to signal the application to keep the row editable, but I do not know how to do that.
Paradoxically, if I replace the event handler with a throw(e.Exception) the exception gets thrown to the wind and is picked up by the uncaught exception handler, but the new row is preserved after that window closes.
How can I preserve the new row on a DataError event?
Edit:
My next thought was to save the row and add it to the DataGridView's data source after the MessageBox pops up. That does not work because adding data to the data source add's it as a committed row which throws an exception because of the invalid data vs keeping the data as an editable row so that validation doesn't happen.