If a text box is disabled (and is grayed out), how can I enable it with a button click?
Code:private void button1_Click(object sender, EventArgs e)
{
}
Printable View
If a text box is disabled (and is grayed out), how can I enable it with a button click?
Code:private void button1_Click(object sender, EventArgs e)
{
}
Seems quite easy. Try this...
Code:textBox.Enabled = true