In a VB6 application I have to build a file which contains a decimal number which must always be written in US format:
1,499.99
But the Format
function takes the system settings into account and on a German system this result would be produced: (Using the format string #,##0.00
)
1.499,99
Can I force the Format
function to use different settings?