private void keypressHandler(object sender, KeyPressEventArgs e) { if (e.KeyChar == Keys.Enter) { SendKeys.SendWait("{TAB}"); } }
e.KeyChar == 11
if (e.KeyChar.Equals(Convert.ToChar(11))) { SendKeys.SendWait("{TAB}"); }
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)