I want to format a decimal (money) to the form "12.345,56" and use the command string(ldec_amount,"##,###,###,###,##0.00")
Normally it works well, but from time to time (rare) I get a char(160) instead of the dot.
What could be the reason for that? Is it the configuration?
- Günther Limberger
- PowerBuilder
- Thursday, 12 May 2022 10:23 AM UTC
- Page :
- 1
There are no replies made for this question yet.
However, you are not allowed to reply to this question.
However, you are not allowed to reply to this question.
Either way, we've recommended the same thing which is to get rid of all the extra "##########"s from the STRING command! :)
Just like with datawindow columns, we should ALWAYS use "#,##0.00", independently of any regional settings in windows. PB is supposed to automatically apply the correct format according to regional settings.