I am trying to writte a code in Delphi, which will be displaying a given number in currency format like this:
Now it works if filled whole number and another field until any paramater is updated. I'd be happy to have a code which would displaying a number in currency format as I writte it. I've tried to manage it by typing this:
procedure TForm1.EditZakladChange(Sender: TObject);
var zaklad: Currency;
begin
zaklad := StrToFloat(EditZaklad.Text);
EditZaklad.Text := FloatToStrF(zaklad, ffCurrency, 10, 2);
end;
end.
But everytime when someting is typed in (zaklad field), this error appears:
Could somebody help me with that, please?
Make sure the MaxLength of edtZaklad is 0.
I hope this what you asked for.