Well. Still gettin' used to it.
I need to create a program that converts temperatures and such for school. I have:
- Celsius
- Kelvin
- Reamour
- And Fahrenheit
Basically when I write to textbox, like I input 4 Celsius and my program must display and convert that 4 Celsius to all the other's
I need help with very basic formula thing. Not the strongest at math but can you help me out?
txtkelvin.Text = FormatNumber(Val(txtcelsius.Text)5.0 / 9.0 * -32)
I get an error at this line. Probably missing some ')' Out from somewhere but where?
And where should I find the other formulas for the temperatures? Kelvin and others?