How to set mode Overwrite in GDBG ?

When I input into GDBD, I want to set mode Overwrite instead of mode Insert without press key Insert. How can I do that ?

1 Reply

AD Administrator Syncfusion Team January 24, 2005 07:13 AM UTC

One way you can do this is to handle the CurrentCellGotFocus event and there use SendKeys to send an Insert key to toggle teh insert state of the active control. private void gridControl1_CurrentCellControlGotFocus(object sender, ControlEventArgs e) { SendKeys.Send("{INSERT}"); }

Loader.
Up arrow icon