...show numbers with thousand separators?
Author: Johan Sageryd
function AddThousandSeparator(S: string; Chr: Char): string;
varÂ
  I: Integer;
begin
  Result := S;
  I := Length(S) - 2;
  while I > 1 doÂ
  begin
    Insert(Chr, Result, I);
    I := I - 3;
  end;
end;
procedure TForm1.Button1Click(Sender: TObject);
begin
  Edit1.Text := AddThousandSeparator('400500210', '''');
  // -- 400'500'210
end;
// Other possibility / andere Möglichkeit: ThousandSeparator := '''';
 label1.Caption := FormatFloat('#,###,###.###', 23453452);
//Â -->Â 23'453'452
printed from
www.swissdelphicenter.ch
developers knowledge base