Is there a way to leave a control in code without explicitly going to the next control? For example, I want to

Me.TextBox1.Text = "abc"
Me.TextBox1.Leave

Not

Me.TextBox1.Text = "abc"
Me.TextBox2.Select