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
I had a user control within another user control. textbox1.Select() worked for me but textbox1.Focus() did not work.
You can also try setting Tabstop to false, textbox1.Focus(), TabStop true.