Is there a way to change or stop the message appearing when invalid data is entered into a cell on a Win
Grid?
Thanks guys. I will use CellDataError.
You may also need to trap the CellDataError event, in addition to Error.
Handle the control's 'Error' event, and set the Cancel property of the event arguments to true:
this.ultraGrid.Error += new Infragistics.Win.UltraWinGrid.ErrorEventHandler(ultraGrid_Error);
void ultraGrid_Error(object sender, Infragistics.Win.UltraWinGrid.ErrorEventArgs e){ e.Cancel = true;}