Datagridview Edit Mode

Joined
Jan 15, 2009
Messages
21
Programming Experience
5-10
How can I capture a keypress or keydown event in the DataGridView while it is in edit mode? I know there's events called KeyDown and Keypress, but if the DGV is in edit mode, they never get caught.

My goal is to make it so pressing the down key moves to the cell directly below, instead of to the right.

Thanks
 
Did you ever figure this thing out? I need to do a similar task of shifting focus to the 1st cell in the row when the user enters another row. The "ROWENTER" event doesn't seem to help as that throws the app into recursive calls that overflow the stack.
 
Check the next thread down the list. jm has already answered my question. I appreciate that you're willing to help though. Thank You.
 
Back
Top