Hey Henrik,

Just got back to my pc, and have a question...

With my current code being
Code:
        'Voltage Display
        if Volts < 100 then                         '+15
            Lcdout $fe, LINE1 + 13,"  ", DEC Volts/10,".",DEC Volts//10," V"
        endif
        if (Volts > 99) AND (Volts < 1000) then     '+14
            Lcdout $fe, LINE1 + 13," ", DEC2 Volts/10,".",DEC Volts//10," V"
        endif
        if Volts > 1000 then                        '+13
            Lcdout $fe, LINE1 + 13, DEC3 Volts/10,".",DEC Volts//10," V"
        endif
if the "Volts" drops from, let's say 1234, to 789, wont I have to overwrite the "1" with a "space"?
If I don't, won't the LCD display "VOLTAGE: 178.9 V", or will it display the proper "VOLTAGE: 78.9 V", (the "1" being an artifact from the previous display)

I guess I'm sorta confused ,

Thanks for taking the time to help me out,
Chris