Registriert seit: 5. Jan 2005
Ort: Stadthagen
9.454 Beiträge
Delphi 10 Seattle Enterprise
|
Re: delay bzw. sleep
21. Nov 2008, 22:21
hi,
Delphi-Quellcode:
procedure SleepX(Milliseconds : Integer);
var
TC: DWORD;
begin
TC := GetTickCount;
repeat
if application.Terminated then
exit;
Application.ProcessMessages; // <--- non-thread
sleep(1);
until ((GetTickCount-TC) > Milliseconds);
end;
Kannst du mir mal erklären wofür du in einer Non-Thread-Umgebung ein sleep brauchst?
cu
Oliver
Kaum macht man's richtig - schon funktioniert's
Zertifikat: Sir Rufo (Fingerprint: ea 0a 4c 14 0d b6 3a a4 c1 c5 b9 dc 90 9d f0 e9 de 13 da 60)
|