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.bool inPaste = false; private void Model_ClipboardPaste(object sender, GridCutPasteEventArgs e) { if(this.inPaste) return; this.inPaste = true; try { if(this.gridDataBoundGrid1.CurrentCell.IsEditing) this.gridDataBoundGrid1.CurrentCell.EndEdit(); this.gridDataBoundGrid1.Model.CutPaste.Paste(); } catch { MessageBox.Show("Bad Paste"); } finally { e.Handled = true; this.inPaste = false; } }