I need to execute some code when the user presses the ENTER key on a DataGridView control. However, it seems that the ENTER key is preprocessed by the control, and is not passed on to the KeyDown event.
Anyone know how to interupt this pre-processing, so that the ENTER key can be handled?
I suspect I have to override a method somehow, but I'm not exactly sure what to do ...I'm looking for an example that shows specifically how to do this.
Any help is greatly appreciated.