What I want to do is set the focus to a specific control (specifically a TextBox) on a tab page when that tab page is selected.
I've tried to call Focus during the Selected event of the containing tab control, but that isn't working. After that I tried to call focus during the VisibleChanged event of the control itself (with a check so that I'm not focusing on an invisible control), but that isn't working either.
Searching this site, I've come across this question but that isn't working either. Although after that, I did notice that calling the Focus of the control does make it the ActiveControl.