4 Replies
If the text length is >0, disable the button
If it's <=0, enable it
private void txtRH_TextChanged(object sender, EventArgs e)
{
yourButton.enabled = (yourTextbox.Text == "")
}
thank you!
Was this issue resolved? If so, run
/close
- otherwise I will mark this as stale and this post will be archived until there is new activity.