(Gast)
n/a Beiträge
|
Re: wie erreiche ich Formatierung 123.456,789?
15. Mai 2006, 19:42
Wie wärs damit?
Delphi-Quellcode:
var FormatInfo: NumberFormatInfo;
FormatInfo := NumberFormatInfo.Create;
FormatInfo.NumberGroupSeparator := '.';
TextBox2.Text := d.ToString('g', FormatInfo);
|
|
Zitat
|