Thema: Delphi Problem mit OnChange

Einzelnen Beitrag anzeigen

Tyrael Y.

Registriert seit: 28. Jul 2003
Ort: Stuttgart
1.093 Beiträge
 
Delphi 2007 Professional
 
#5

Re: Problem mit OnChange

  Alt 18. Jan 2008, 13:06
TryStrToFloat ist in SysUtils definiert und besitzt mehrere Überladungen

Delphi-Quellcode:
function TryStrToFloat(const S: string; out Value: Extended): Boolean;

function TryStrToFloat(const S: string; out Value: Extended;const FormatSettings: TFormatSettings): Boolean;

function TryStrToFloat(const S: string; out Value: Double): Boolean;

function TryStrToFloat(const S: string; out Value: Double;
const FormatSettings: TFormatSettings): Boolean;

function TryStrToFloat(const S: string; out Value: Single): Boolean;

function TryStrToFloat(const S: string; out Value: Single;
  const FormatSettings: TFormatSettings): Boolean;

...du kannst es mit diesen Parametern benutzen, musst halt schauen, welches für dich am meisten geeignet ist.
Levent Yildirim
Erzeugung von Icons aus Bildern:IconLev
  Mit Zitat antworten Zitat