10-29-2010 02:51 AM
Is there a way to change dynamically the decimal point used in numeric control without restarting application?
With decimal point localized, that's work only when restarting the application...
Thanks
10-29-2010 05:41 AM
Yes, you can by changing the Format string:
Changing it from '%.;%f' will use a dot as decimal sign. If you change the format string into '%,;%f' will use comma.d
You have to do this for every control you want to change, so creating some framework is usefull.
Ton
10-29-2010 06:14 AM
ahhh Yes! Thank you.
I don't remember of this property node!