I have a forms app and when it starts up I would like it to give focus to a particular text box. While I was initially developing I just whacked all the controls straight on the form and the focus command worked fine.

The app is near ready and I put some splitcontainers on the form just to hold the controls in neatly defined areas using their Dock properties. Now a completely different read only control gets focus on startup and the app seems to ignore my command that the focus should go to this one textbox. Does any one know why this might be?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

You can try this :

splitContainer1.Focus();
splitContainer1.ActiveControl = textBox1;

If it doesn't works please post your focus code here. Sorry because i didn't write a comment but i don't have the privilege yet.

link|improve this answer
You, sir, are a champion. You learn something new every day. Like today I learned how stupid the way winforms, splitcontainer and control focus commands work together is. Many thanks. – One Monkey Apr 13 '11 at 9:03
Your are welcome I am so glad that i helped you:) – TheDarkLord Apr 13 '11 at 9:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.