I am trying to use the values from numericUpDown boxes.
With the execptoin of totalRunTime, all variables in this sample of code are from numericUpDown boxes.
I have tried declaring totalRunTime as an int, decimal, double, ect...
Am I missing something simple here?
private void button1_Click(object sender, EventArgs e)
{
totalRunTime = (secondTemp.Value - startTemp.Value) / ramp1.Value + initialHold +
(finalTemp.Value - secondTemp.Value) / ramp2.Value + finalHold.Value;
}