Hello,

I already have a solution to move to the next cell in my datagridview and works fine
I am using this code:

Private Sub DataGridView1_KeyDown(sender As Object, e As KeyEventArgs) Handles DataGridView1.KeyDown
If e.KeyCode = Keys.Enter Then
' Your code here
SendKeys.Send("{TAB}")
e.SuppressKeyPress = True
End If
End Sub

But after editing in a cell and by press on enter, then the focus goes to the next row.

Thanks in advance,
Marc.