I have a simple textbox with a text saying "Username".
Picture what i'm talking about:
It must be some bug, Is it possible to make the "Username" default text selected when i launch the exe directly?
You can select the text form inside the text box when it loads
private void Form_Load(object sender, EventArgs e)
{
textBox1.SelectionStart = 0;
textBox1.SelectionLength = textBox1.Text.Length;
}