Thanks for replying...

Well. Thiis will work but reply's on LCD as a ASCII code:

Code:
Print at 2, 1, Temp ; Read temp from a dS1820
and this will works to convert the ASCII code to a normal celcius:

Code:
Print at 2, 1, DEC Temp ; Read temp from a dS1820
Now i want to do an if then else statement on the Temp var. If I only take this code:

Code:
IF Temp = ... THEN
the Temp var will only reads the ASCII code, but I want the source to read the celcius in the if statement, and not the ASCII code...

I hope this makes it clearer.