When I change the thousand separator in the Memo properties of a float value it still keeps using the thousand separator of my regional setting.
How come?
This problem maybe resolved changing the Display Format of memo for Number, select your correct format and write your decimal separator ( "." or ","), and the thousand separator will be right.
When I change the thousand separator in the Memo properties of a float value it still keeps using the thousand separator of my regional setting.
How come?
here is problem
The properties of the tfrxMemoView regarding the format is Number %2.2n and DecimalSeperator '.', ThousandSeparator ','
%2.2n gives the delphi format which is system reliant.
use a custom format string.
here is problem
The properties of the tfrxMemoView regarding the format is Number %2.2n and DecimalSeperator '.', ThousandSeparator ','
%2.2n gives the delphi format which is system reliant.
use a custom format string.
Please tell me how to use a custom format string that does this for me
Comments
Regards,
Daniel
Sorry for the delay.
In the OS for Regional Settings (Dutch (Netherlands):
Numbers: 123.456.789,00
(Currency: ??¬ 123.456.789,00)
The properties of the tfrxMemoView regarding the format is Number %2.2n and DecimalSeperator '.', ThousandSeparator ','
The result I want is:
Numbers: 123,456,789.00
What I can establish is:
Numbers: 123.456.789.00
The properties of the tfrxMemoView regarding the format is Number %2.2n and DecimalSeperator '.', ThousandSeparator ','
%2.2n gives the delphi format which is system reliant.
use a custom format string.
Please tell me how to use a custom format string that does this for me