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
You can use either textBox1.select(); or the TabIndex in textbox setting. TabIndex=0 focoused first.
textBox1.select();
TabIndex=0