I am trying to make a small pizza order form, but I have a problem with the calculations. After selecting a pizza, the unit price and total calculations are ok. But selecting additions introduces a problem, after changing the NumericUpDown value, the calories are not correct (All units have constant prices and calories). The NumericUpDown's name is numberofunit. How can i calculate them?
if (pepper.Checked)
{
string peppereklendi = Convert.ToString(
Convert.ToDouble(unitprice.Text)
+ pepperprice);
unitprice.Text = peppereklendi;
total.Text = Convert.ToString(
Convert.ToDecimal(unitprice.Text)
* numberofunit.Value);
string pepperkaloriekle = Convert.ToString(
Convert.ToInt16(gizlikalori.Text)
+ pepperkalori);
gizlikalori.Text = pepperkaloriekle;
amountofcalorie.Text = Convert.ToString(
Convert.ToDecimal(gizlikalori.Text)
* numberofunit.Value);
}
else
{
string peppereklendi = unitprice.Text;
unitprice.Text = Convert.ToString(
Convert.ToDouble(peppereklendi)
- pepperprice);
total.Text = Convert.ToString(
Convert.ToDecimal(unitprice.Text)
* numberofunit.Value);
string pepperkaloriekle = gizlikalori.Text;
gizlikalori.Text = Convert.ToString(
Convert.ToDouble(pepperkaloriekle)
- pepperkalori);
amountofcalorie.Text = Convert.ToString(
Convert.ToDecimal(gizlikalori.Text)
* numberofunit.Value);
}
This Code is pepper's checkbox code.
homework- It makes it clear what you're asking and why. Thanks – Basic Jan 8 at 1:57