New Product Launch - BoldDesk !
Introducing help desk ticketing software.
New Product LaunchBoldDesk: Help desk ticketing software starts at $10 for 3 agents.
Try it for free.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 } }