Hi,
I want to hide some things when the value of the numericUpDown is changed so I wrote this:
if (numericUpDown1.Value = 1)
{
Label1.Hide();
}
but I get this error message:
Cannot implicitly convert type 'decimal' to 'bool'
Thanks