Registriert seit: 9. Jun 2003
Ort: Pforzheim
2.458 Beiträge
Delphi 2007 Professional
|
Re: anderen Delay als sleep
31. Okt 2005, 15:18
Moin,
probier mal folgendes:
Delphi-Quellcode:
procedure Delay(const Milliseconds: DWord);
var
FirstTickCount: DWord;
begin
FirstTickCount := GetTickCount;
while ((GetTickCount - FirstTickCount) > Milliseconds) do
begin
Application.ProcessMessages;
Sleep(0);
end;
end;
gruss
[edit=alcaeus]HTML-Entitaet durch korrektes Zeichen ersetzt. Mfg, alcaeus[/edit]
Christian Bootz Einstein ist tot, Newton ist tot,
und mir ist auch schon ganz schlecht...
|