Hallo Emil,
Zitat von
EWeiss:
Delphi-Quellcode:
if not StartMilliseconds <> 0 then
StartMilliseconds := GetTickCount();
Ich glaube, was du wirklich erreichen willst ist das:
Delphi-Quellcode:
if not (StartMilliseconds <> 0) then
StartMilliseconds := GetTickCount();
oder noch besser:
Delphi-Quellcode:
if (StartMilliseconds = 0) then
StartMilliseconds := GetTickCount();
NOT bindet stärker als ein Vergleich und wird somit zuerst ausgewertet.
Gruß Hawkeye