In javascript i can use function setInterval("functionName',time); to functionName after time delay. How i can use a function like setInterval in Delphi?
Thank a lot.
In javascript i can use function setInterval("functionName',time); to functionName after time delay. How i can use a function like setInterval in Delphi?
Thank a lot.
Create a TTimer
, and set its interval to time
. Then create an onTimer
event and call the functionName
in the event procedure.