I have 3 global variables V1 saves V2 * V3, but it is not working right.
I debugged with a break at the math code and V2 and V3 have the right value but V1 has 0.0
can anyone help me on this.
some code :
costofAlligor = Alligor * AlligorInput;
these 2 lines are from the debug screen
Alligor 2781.9 float
AlligorInput 500.0 float
and the full block of math code :
private void button1_Click(object sender, EventArgs e)
{
costofAlligor = Alligor * AlligorInput;
costofBriochit = Briochit * BriochitInput;
costofChollonin = Chollonin * CholloninInput;
costofEspitium = Espitium * EspitiumInput;
costofHydrobenol = Hydrobenol * HydrobenolInput;
costofIsopropenetol = Isopropenetol * IsopropenetolInput;
costofMetachropin = Metachropin * MetachropinInput;
costofPhlobotil = Phlobotil * PhlobotilInput;
costofPlasteosine = Plasteosine * PlasteosineInput;
costofPolynitrocol = Polynitrocol * PolynitrocolInput;
costofPolynucleit = Polynucleit * PolynucleitInput;
costofPrilumium = Prilumium * PrilumiumInput;
costofStatchanol = Statchanol * StatchanolInput;
costofTitanium = Titanium * TitaniumInput;
costofVitricyl = Vitricyl * VitricylInput;
totalCost = costofAlligor + costofBriochit
+ costofChollonin + costofEspitium
+ costofHydrobenol + costofIsopropenetol
+ costofMetachropin + costofPhlobotil
+ costofPlasteosine + costofPolynitrocol
+ costofPolynucleit + costofPrilumium
+ costofStatchanol + costofTitanium
+ costofVitricyl;
}
the whole code of form2 is here : http://pastebin.com/87q29tHp
i thought a link would work better as it is quite long.
i know that alot of the math can be done better or differently but i am learning programming and this is the only way i know how to do it at the moment.
