Hi I have a numericupdown box and I am trying to load the value of it each time the form loads.
I have tried the following with no joy
string striko1value = clsData.GetStriko1GasReading();
decimal striko1 = decimal.Parse(striko1value);
Striko1Numeric.Value = Convert.ToDecimal(striko1);
I have also tried this
Striko1Numeric.Value = (striko1);
Anyone have any ideas about how I would do this or where I could read up on this.
stiko1value. Tell us what you see.