I'm trying to convert my spreadsheet programs to Revolution.
I have a problem to setting numberformat into field "results" (I need format #.##0;-#.##0 the same in the spreadsheet)
My Rev stack is composed as follows: field "a" - field "b" - field "results"-
button "Enter"
Code: Select all
[b]Button "Enter"[/b]
on mouse up
put fld "a" * fld "b" into fld "results"
end mouseup
[code] [b]field "results"[/b]
on field
set numberformat to me to "#.##0;-#.##0"
end field