Topic: Set Cursor Focus and Enter Key Handling
How am i able to translate the following script for MVD.
I wish to press enter and to set focus to the next textbox.
Procedure textBox1_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Enter)
{
textBox2.Focus();
}
}