Say I have a Textbox nested within a TabControl.
Textbox
TabControl
When the form loads, I would like to focus on that Textbox (by default the
Try putting it in the Form_Shown() event. Because it's in a container, putting in the Form_Load or even the Form() constructor won't work.
Form_Shown()