Hello
How do I change the decimal symbol from , to . (Comma to Point)?
Thank you
Zaico

Hello
How do I change the decimal symbol from , to . (Comma to Point)?
Thank you
Zaico
If you need to change it system wide, then its in the regional settings of the client computer, but if its just one place, then you should provide example. If you can convert the value to text you can use ConvertStr:
TextVar := ConvertStr(TextVar, ',', '.');
Tero