so I'm trying to do some calculation and textbox66 here should be the result, but it ended up showing "input string was not in correct format". how can I fixed this? thankyou
else if (2.8 < fsF & fsF <= 3)
{
textBox66.Text = ((((0.8 * fF + 0.7) - (0.8 * fF + 0.67)) * (fsF - 2.8) / 0.2) +
(0.8 * fF + 0.67)).ToString();
}
var w0 = Convert.ToDecimal(float.Parse(textBox66.Text));
var wdesain = Convert.ToDouble(w0 * F * web00 / 1000);`