I want to use fncedit as a numeric edit.
I choose
autothousandseperator => true
edittype => etfloat
precision => 2
when the number is below 1000 it is okay.
it shows like 125,00
but over 1000 it does not show the thousand seperator
it shows like 10130,00
Pieter
(Pieter)
2
As a workaround, use etMoney. It does not add a currency symbol unless you configure Prefix:
TMSFNCEdit1.EditType := etMoney;
TMSFNCEdit1.AutoThousandSeparator := True;
TMSFNCEdit1.Precision := 2;
TMSFNCEdit1.Prefix := '';
TMSFNCEdit1.FloatValue := 10130;