Where I can I get a counter thingy for a powerpoint slide?
June 28, 2006 8:42 AM
Subscribe
I'm looking for a counter to put on a powerpoint slide that will count up to a number of my choosing. Is there such a thing? I want to be able to say e.g. there are surprising number of widgets in this country and then have the counter ticking up as I'm tallking and then stop at the right number. Variable speed would be good, in case I need big numbers. Any ideas?
posted by janecr to computers & internet (9 comments total)
1 user marked this as a favorite
const COUNT_TO_THIS_NUMBER = 1000000
Dim intCount as integer
for intcount=1 to COUNT_TO_THIS_NUMBER step 1
me.lblCounter.caption = cstr(intCount)
next intcount
For timed counts to a certain number, you'll have to integrate it with a timer. See your programmer for more details.
posted by unixrat at 8:54 AM on June 28, 2006