Custom Format string for numbers
Hello,
I don't know whichc formatstring to use to convert the format of a number from
12345678,50
to
12.345.678
If I use %d i get 12345678 but i need 12.345.678
Thanks
Philipp
I don't know whichc formatstring to use to convert the format of a number from
12345678,50
to
12.345.678
If I use %d i get 12345678 but i need 12.345.678
Thanks
Philipp
Comments
1,1
1,12
1,123
1,1234
I try:
%2.1f
%2.2f
%3.3f
and nothing ..
Ps.: I try to modify in run time, like:
memPrecoUnit := TfrxMemoView(Sender);
memPrecoUnit.DisplayFormat.FormatStr := '%1.1f';