m0stwanted143
Eternal Poster
If the 3 label amount has no value the button is disabled,
otherwise if any of the 3 label has a value then the button is enabled
otherwise if any of the 3 label has a value then the button is enabled
private void textBoxes_TextChanged(object sender, EventArgs e)
{
button1.Enabled = GetInt(textBox1) > 0 || GetInt(textBox2) > 0 || GetInt(textBox3) > 0;
}
int GetInt(TextBox text)
{
int i = 0;
int.TryParse(text.Text.Trim(), out i);
return i;
}
Paps paanu naman po kung label ung ginagawa ko Textbox po kasi ung ginawa nyo po paps.. Salamat sa sagot mo papstry nyo po lagyan ng textchanged event yung textbox
C#:private void textBoxes_TextChanged(object sender, EventArgs e) { button1.Enabled = GetInt(textBox1) > 0 || GetInt(textBox2) > 0 || GetInt(textBox3) > 0; } int GetInt(TextBox text) { int i = 0; int.TryParse(text.Text.Trim(), out i); return i; }
project dl link: You do not have permission to view the full content of this post. Log in or register now.
ganun padin naman palitan nalang ng Label yung TextBox bali ang gagawin nalang ayPaps paanu naman po kung label ung ginagawa ko Textbox po kasi ung ginawa nyo po paps.. Salamat sa sagot mo paps
private void text_changed(object sender, EventArgs e)
{
button1.Enabled = GetInt(label1) > 0 || GetInt(label2) > 0 || GetInt(label3) > 0;
}
int GetInt(Label text)
{
int i = 0;
int.TryParse(text.Text.Trim(), out i);
return i;
}