private void gdvUnknown_InvalidRowException(object sender, DevExpress.XtraGrid.Views.Base.InvalidRowExceptionEventArgs e) { try { e.ExceptionMode = DevExpress.XtraEditors.Controls.ExceptionMode.DisplayError; e.WindowCaption = "Input error"; } catch (System.Exception exception1) { System.Exception thisException = exception1; Management.ShowException(thisException); } }
private void viewListado_InvalidRowException(object sender, DevExpress.XtraGrid.Views.Base.InvalidRowExceptionEventArgs e) { e.ExceptionMode = ExceptionMode.NoAction; }
private void gridView1_InvalidRowException(object sender, DevExpress.XtraGrid.Views.Base.InvalidRowExceptionEventArgs e) { e.ExceptionMode = DevExpress.XtraEditors.Controls.ExceptionMode.NoAction; }
private void gridView_InvalidRowException(object sender, DevExpress.XtraGrid.Views.Base.InvalidRowExceptionEventArgs e) { this.gridView.SetColumnError(this.gridView.Columns[1], e.ErrorText.ToString()); e.ExceptionMode = DevExpress.XtraEditors.Controls.ExceptionMode.NoAction; }
private void gridView1_InvalidRowException(object sender, DevExpress.XtraGrid.Views.Base.InvalidRowExceptionEventArgs e) { e.ExceptionMode = ExceptionMode.NoAction; //Suppress displaying the error message box }
private void advBandedGridView1_InvalidRowException(object sender, DevExpress.XtraGrid.Views.Base.InvalidRowExceptionEventArgs e) { // e.ExceptionMode = ExceptionMode.NoAction; }
void gridView1_InvalidRowException(object sender, DevExpress.XtraGrid.Views.Base.InvalidRowExceptionEventArgs e) { e.ExceptionMode = ExceptionMode.NoAction; }
void gridView_InvalidRowException(object sender, DevExpress.XtraGrid.Views.Base.InvalidRowExceptionEventArgs e) { throw new NotImplementedException(); }