S
S Moran
private void button1_Click(object sender, EventArgs e)
{
textBox1.SelectionStart = 0;
textBox1.SelectionLength = textBox1.Text.Length;
}
yet when the button is clicked and there is text in the textbox.... NOTHING.
what am i missing here?
{
textBox1.SelectionStart = 0;
textBox1.SelectionLength = textBox1.Text.Length;
}
yet when the button is clicked and there is text in the textbox.... NOTHING.
what am i missing here?