04-12-2007, 08:04 PM
Well, it's possible to loop with a timer, just not practical.
Could set the interval to 1000 (1 second) and then in the timer code do:
I used to do that, when I first started and didn't fully understand how to use loops and stuff.
Could set the interval to 1000 (1 second) and then in the timer code do:
Code:
a as long
a = a + 1
if a = 60 then ' 1 minute
do stuff
end if
I used to do that, when I first started and didn't fully understand how to use loops and stuff.