I have in my C# program textBox
I need that when the program start, the focus will be on the textBox
I try this on Form_Load:
MyTextBox.Focus
Set Tab Index property's value = 0 and then in form load function write :
YourTextboxName.Focus();
It will work.