Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

windows form toolbox enter key

private void textBox1_KeyUp(object sender, KeyEventArgs e)
{
    if (e.KeyCode == Keys.Enter)
    {
        textBox2.Focus();
    }
}
 
PREVIOUS NEXT
Tagged: #windows #form #toolbox #enter #key
ADD COMMENT
Topic
Name
7+9 =