FB II COMPILER
Display great numbers
Try the below, it is what I used for "TweenMachine" for getting rid of the E problem. Worked for me.
newvalue$ = STR$(newresult#)
LONG IF INSTR(0,newvalue$,"E") <> 0
newvalue$ = USING "##.######";newresult#
END IF
|