protected override bool ProcessDialogKey( Keys keyData)
{
if ((ActiveControl is TextBox || ActiveControl is ComboBox ) &&
keyData == Keys . Enter)
keyData = Keys . Tab;
}
return base . ProcessDialogKey(keyData);