Registriert seit: 29. Mai 2002
37.621 Beiträge
Delphi 2006 Professional
|
26. Dez 2002, 23:05
Delphi-Quellcode:
procedure delay(msec:longint);
var
start,stop:longint;
begin
start := gettickcount;
repeat
stop := gettickcount;
application.processmessages;
until (stop - start ) ›= msec;
end;
Michael Ein Teil meines Codes würde euch verunsichern.
|