|
Thousend Separator |
Posted by Baldur F?rchau on Oct-31-2014 23:02 |
|
If the thousend separator for formatting values is blank, the value will be formatted with a "?"!
For example:
Object.setlabelFormat "{Value|2 ,}"
Happens on Windows 8.1 with Language "Deutsch(Austria)", where the thousendseparator is space.
|
Re: Thousend Separator |
Posted by Peter Kwan on Nov-01-2014 04:23 |
|
Hi Baldur,
Would you mind to inform me which programming language you are using? Is it VB6?
Regards
Peter Kwan |
Re: Thousend Separator |
Posted by Peter Kwan on Nov-01-2014 04:54 |
|
Hi Baldur,
After some more thoughts, I am speculating may be your code is using a special character
called the non-breaking space (Unicode U+00A0) as the separator. If this is the case,
please change it to a normal space character instead (the space that you enter using the
space bar, and it should be equivalent to the ASCII space character and Unicode U+0020).
If the separator is dynamically determined, you may need to add code to check if it is a
non-breaking space, and change it to a normal space character.
Hope this can help.
Regards
Peter Kwan |
|