Reviews, News, and How To Geeks

Download Our Windows 7 Tips!

Replies to This Discussion

Well it sounds like you will need 2 timers. One set to a interval of 500 - the other set to 10000.
timer1.interval = 10000
timer2.interval = 500
on timer1_ontick [or w.e it is :P]
if timer2.enabled = false then
timer2.enabled = true
else
timer2.enabled = false
end if
on timer2_ontick [or w.e it is xD]
listbox1.items.add("YOOOO!")
if progressbar1.value < 100 then
progressbar1.value = progressbar1.value + 5
else
timer2.enabled = false
end if

Sorry for the messy coding, but something like that should work!

Reply to This

THANK YOU!
:D

Reply to This

So that is what you needed? :D

Reply to This

look at the attached file for an idea on how to do what you want.
Attachments:

Reply to This

RSS

© 2009   Created by Chris Pirillo

Badges  |  Report an Issue  |  Privacy  |  Terms of Service