In vb.net datagridview the default Enter/Return key behavior is to move to the next row is there a quick and easy way to avoid that.
Any suggestions are welcome
|
In vb.net datagridview the default Enter/Return key behavior is to move to the next row is there a quick and easy way to avoid that. Any suggestions are welcome |
|||
|
|
|
You can try something like this in the gridview key down event
Another option would be to create a custom grid view control |
|||
|
Override the DataGridView (write your own that inherits from it), and process the OnKeyDown method.
|
|||
|
|
|
You can just use keyPress event:
|
|||
|
|