I want to change the default action so that the code does not skip the line, what I want to achieve is that when you touch the Enter select that row and return an ok.
if (e.KeyChar == Convert.ToChar(Keys.Enter))
{
this.DialogResult = System.Windows.Forms.DialogResult.OK;
}