Is there a way to change or stop the message appearing when invalid data is entered into a cell on a Win
Grid?
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;}
You may also need to trap the CellDataError event, in addition to Error.
Thanks guys. I will use CellDataError.