I'm a newbie at VB and I'm stumped.
I don't understand why I get a syntax error for this line of code:
Celcius = Int(FTemp + 40) * 5 / 9 + 40)
Printable View
I'm a newbie at VB and I'm stumped.
I don't understand why I get a syntax error for this line of code:
Celcius = Int(FTemp + 40) * 5 / 9 + 40)
You are forgetting a parentheses...
Celcius = Int((FTemp + 40) * 5 / 9 + 40)