So I\'ve been running into some trouble tonight with my c# windows forms application. Is it possible to insert a new row to a datagridview when the currently selected new row is
Okay so I figured how to make this work. When modifying the values using my custom control, I had to use
bindingSource.EndEdit();
dataGridView.NotifyCurrentCellDirty(true);
dataGridView.EndEdit();
dataGridView.NotifyCurrentCellDirty(false);
So whenever changes are made to the new row, it forces the row to be committed and adds a new blank row space to the end of the datagridview.
I did not have to use Validate(), however.