Thema
:
Delphi
GetTickCount Problem
Einzelnen Beitrag anzeigen
Noobinator
Registriert seit: 9. Mai 2006
147 Beiträge
Delphi 7 Personal
#
19
Re: GetTickCount Problem
7. Feb 2008, 18:27
Probiers mal so
zusammenfalten
·
markieren
Delphi-Quellcode:
var
start:Dword;
begin
start := gettickcount;
// Startzeit merken
while
true
do
// zum test mal ne Endlosschleife
begin
if
gettickcount - start >= 1000
then
//1 Sekunde abwarten
begin
Progressbar1.StepBy(10);
// um 10 weitergehen
start := gettickcount;
// neue Zeit merken
end
;
end
;
Zitat
Noobinator
Öffentliches Profil ansehen
Mehr Beiträge von Noobinator finden