BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
private void Model_PasteCellText(object sender, GridPasteCellTextEventArgs e) { try { this.gridDataBoundGrid1[e.RowIndex, e.ColIndex].Text = e.Text; e.Cancel = true; //cancel it as you did the paste } catch { //don''t show the message this.gridDataBoundGrid1.CurrentCell.ErrorMessage = ""; e.Cancel = true; //as it cannot be done //e.Abort = true;//if you want to stop pasting rest of cells } }