Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
function InsertCommas ( const s: string ): string;
var
p: integer;
begin
result := s;
p := Length(result) - 2;
while p > 1 do begin
Insert ( ',', result, p );
dec ( p, 3 );
end;
end;
Edit1.Text := InsertCommas ( Edit1.Text );