I need to give the focus to a specific textbox
when the application is launched.
I'm using this piece of code:
private void myForm_Load(object sender, EventArgs e)
{
myTextbox.select()
}
It actually works. But is this the correct way to achieve my goal?