07-07-2010 09:36 AM
Hello everyone,
i have a problem with the setting of the numbering format. In germany, the value 1.5 is written as 1,5. So my labview program recognise 1,5 instead of 1.5 I want to set in to the normal american numbering system instead of the german system.
Where can i change the setting for it ?
Thank You
Solved! Go to Solution.
07-07-2010 09:40 AM
Depends on what you mean by "recognize". Is this reading from a file? Is this for a front panel control? Is this for writing out to a file? Is this for a built application?
See, for example
How Can I Localize My Executable So That the Decimal Separator Is the Same on European Computers?
as well as all the other links from this search.
07-07-2010 12:58 PM
When you use the Scan from string function, start the format string with '%.;' this will set the decimal sign to a point.
Ton
07-07-2010 02:05 PM
07-07-2010 03:54 PM - edited 07-07-2010 03:54 PM
All good answers above.
As smercurio mentionned, what is meant by "recognize"? In other words, how is this localization used? The answer to that will select the appropriate solution.
07-08-2010 02:22 AM
Thank you