Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
1k views

Delphi 5 - StrToFloat results differntly on WinXP and Win2K

I have this weird problem that a convert of a string on my machine and a production server gets different results eg: procedure TForm1.Button1Click(Sender: TObject); var s1: string; f1: double; ...
1
vote
1answer
462 views

StrToFloat raise error in my Application not in any application

My application written month ago in Delphi 7. Now I want to convert a float str value (like 12.5) to extended, but delphi raise an error. Debugger Exception Notification Project Educatee.exe raised ...
1
vote
6answers
5k views

Convert string with commas to float

Is there a built-in Delphi function which would convert a string such as '3,232.00' to float? StrToFloat raises an exception because of the comma. Or is the only way to strip out the comma first and ...