We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
close icon

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.
Live Chat Icon For mobile
Up arrow icon