Hi,
I wonder if it is possible to setup PRINT USING to display (large) numbers, separated with points instead of comma's. This is common in EU and possibly other areas.
Wiki
http://www.qb64.org/wiki/PRINT_USING says:
,. Comma to left of decimal point, prints a comma every 3 used # digit places left of the decimal point.
This gives me 324,653,221. if programmed with
PRINT USING "##############,."; a (and I don't need decimals here).
Stripping to
PRINT USING "##############,"; a (undocumented on wiki) makes it even better to 324,653,221
But
PRINT USING "##############."; a doesn't do the trick.
I like to see my number as 324.653.221 with PRINT USING and preferrably without coding that myself in a Function ;-)
Is this possible?