Link to home
Start Free TrialLog in
Avatar of antony burden
antony burden

asked on

Float Conversion

procedure TForm1.txtPressureChange(Sender: TObject);
var
    Pressure: Single;
begin
    if length(txtPressure.Text) > 0 then
    begin
      Label1.Caption := FormatFloat('0.00', StrToFloat(txtPressure.Text));
      Pressure := StrToFloat(Label1.Caption)
    end;
    Label2.Caption := FloatToStr(Pressure)
end;

This is my attempt to ensure that the variable Pressure is the same as entered in txtPressure,
however the results I get are as follows:

txtPressure.Text      '10.1'

Label1.Caption            '10.10'

Label2.Caption            '10.1000003814697'

so Pressure = 10.1000003814697 not 10.1, how can I fix this please.

Antony
ASKER CERTIFIED SOLUTION
Avatar of javiertb
javiertb

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of antony burden
antony burden

ASKER

Label2 was only used to show the strange value, I need to ensure that variable Pressure is exactly the same as the value entered in txtPressure, I'm not worried about Label1 or Label2, just Pressure.Please can someone correctly answer this problem.Antony
Try this:

var
    idecimals,idigits: integer;
    Pressure: single;
begin
  idecimals:=pos(',',txtPressure.Text); // decimals separator
  if (idecimals>0) then
     idigits:=length(txtPressure.Text)-idecimals
  else
    idigits:=0;
  Pressure:=strtofloat(txtPressure.text);
  Label1.Caption:=                                  FloattoStrF(txtPressure.Text,ffFixed,7,idigits);
end;

Label1 should be the same as txtPressure.
Thankyou, I'll try this very soon.Thanks a lot.Antony
Could you explain why the number displayed is so wierd?
No idea. It isn't logical. If you introduce '10,10' why you get 10,1000543 or whatever instead of 10,1000000 (what would be the logical result)?? Better to ask Borland for this.