Registriert seit: 28. Jul 2003
Ort: Stuttgart
1.093 Beiträge
Delphi 2007 Professional
|
Re: Suche effizienter machen
23. Sep 2008, 11:08
Für die Geschwindigkeitmessung würde ich folgendermassen vorgehen.
Delphi-Quellcode:
var LBegin,
LEnd: integer;
LTime: String;
begin
LBegin := GetTickCount();
try
HierMacheIchDieArbeit();
finally
LEnd := GetTickCount;
EinLabel.Caption := IntToStr(LEnd - LBegin);
end;
end;
Levent Yildirim Erzeugung von Icons aus Bildern: IconLev
|