xcoder
Member in Training
Posts: 56
|
Post by xcoder on Mar 23, 2022 20:21:22 GMT
print "##############"
ct = 0
for i = 1 to 10 step 2
ct = ct + 20
print space$(i)+chr$(11)+chr$(12)+"processing ";ct;"% >>>"
call delay
next i
print space$(11);"Finished"
print:print
End
sub delay
timer 1000, [itHappened]
wait ' wait here
[itHappened]
end sub
|
|
|
Post by Rod on Mar 23, 2022 20:32:44 GMT
Cool, but remember to turn off the timer in the sub. It will repeat and crash the program when it can’t find [ithappened]
|
|