Einzelnen Beitrag anzeigen

Dax
(Gast)

n/a Beiträge
 
#3

Re: wie erreiche ich Formatierung 123.456,789?

  Alt 15. Mai 2006, 18:42
Wie wärs damit?

Delphi-Quellcode:
var FormatInfo: NumberFormatInfo;

FormatInfo := NumberFormatInfo.Create;
FormatInfo.NumberGroupSeparator := '.';
TextBox2.Text := d.ToString('g', FormatInfo);
  Mit Zitat antworten Zitat