12-16-2015 05:09 AM
I changed my general windows language settings and it works now, all good!!
12-16-2015 06:22 AM
Hi Ribbster,
some comments:
having done that, I tried to directly insert a decimal point into my final array, which didn't work, I could still only use commas.
You need to restart LabVIEW after changing that option!
when I change the string format to %,3f for example, the final array is filled with zeros
This is not a valid format code!
Just read the LabVIEW help, it lists all allowed format specifiers.
12-16-2015 07:49 AM
Ribbster wrote:
• when I change the string format to %,3f for example, the final array is filled with zeros
You actually want your format to be "%.;%.3f". The "%.;" sets the localized decimal point for the operation to be a period instead of a comma.