Registriert seit: 6. Okt 2005
Ort: Niederlande
215 Beiträge
Delphi 7 Enterprise
|
Re: Listview sortieren (Dateigroesse und Speed)
24. Nov 2005, 14:22
Stimmt marabu beim druecken der CTRL Taste und auf StrtoFloat steht das in der Unit SysUtils:
Delphi-Quellcode:
function StrToFloat(const S: string): Extended;
begin
if not TextToFloat(PChar(S), Result, fvExtended) then
ConvertErrorFmt(@SInvalidFloat, [S]);
end;
function StrToFloat(const S: string;
const FormatSettings: TFormatSettings): Extended;
begin
if not TextToFloat(PChar(S), Result, fvExtended, FormatSettings) then
ConvertErrorFmt(@SInvalidFloat, [S]);
end;
|
|
Zitat
|