Schon im FormCreate...
Delphi-Quellcode:
fs := TFormatSettings.Create;
fs.DecimalSeparator := '.';
probiert und dann...
StrToFloat(edtXStart.Text, fs)
?
Ist wahrscheinlich total falsch aber so klappt es bei mir.
Oder eben im FormCreate
FormatSettings.DecimalSeparator := '.';
und dann
StrToFloat(edtXStart.Text)