You may be able to work around this behavior by explicitly calling
CancelEdit in your RowValidating handler when you set e.Cancel = true;
void dataGridView1_RowValidating(object sender,
DataGridViewCellCancelEventArgs e)
{
//......whatever????
e.Cancel = true;
((DataGridView)sender).CancelEdit();
}
===================
Clay Burch
Syncfusion, Inc.
John Rivers - 05 Jan 2007 18:04 GMT
And how will solve the broken Dirty Pen problem?
> You may be able to work around this behavior by explicitly calling
> CancelEdit in your RowValidating handler when you set e.Cancel = true;
[quoted text clipped - 10 lines]
> Clay Burch
> Syncfusion, Inc.