BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
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; } }