more on countdown clock

F

Fred Dagg

I want to countdown to an event, ie Christmas. I want to display days;
hours: minutes:seconds. I want to use the system clock so the countdown
doesn't reset each time the presentation is loaded. Is this possible?

Thanks again.
 
B

Bill Dilworth

Yes Fred, there is a way.

1) Do you know any VBA or coding?
2) Will you have control on the computer(s) that will run this.
3) Will this be distributed?

You will need to run a macro on the presentation to calculate the clock, but
the macro may be blocked by security settings.

--
Bill Dilworth
A proud member of the Microsoft PPT MVP Team
Users helping fellow users.
http://billdilworth.mvps.org
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
vestprog2@ Please read the PowerPoint FAQ pages.
yahoo. They answer most of our questions.
com www.pptfaq.com
..
 
F

Fred Dagg

Thanks Bill, I do a bit of VB and I've designed a form that does exactly
what I want. How do I get the form from the VBA Project (within the
presentation) to display on the slide?
Thanks again.
 
B

Bill Dilworth

Ok, that is a very good start.

Make a Module with a subroutine that opens your time-keeping VBA form.
Then use an action setting to fire the subroutine.



In module:
Sub ParsleySageRosemary()
frmMyForm.Show
End Sub



In presentation:
Right click on shape that you want to start the clock.
Select Action Settings
Select Mouse Click tab
Select Run Macro button
Select ParsleySageRosemary in the pulldown
OK out of there

--
Bill Dilworth
A proud member of the Microsoft PPT MVP Team
Users helping fellow users.
http://billdilworth.mvps.org
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
vestprog2@ Please read the PowerPoint FAQ pages.
yahoo. They answer most of our questions.
com www.pptfaq.com
..
 
F

Fred Dagg

Okay, thanks Bill and Steve. I'm getting there and so far it works with a
shape after clicking the mouse BUT, is there a way to automate the macro to
run as soon as the slide appears and the macro stops when the slide's time
has expired? This is the final step. Thanks again.
 
F

Fred Dagg

okay, okay. But I can't find the timer control. It doesn't appear on my
toolbox. Alternatively, can i put 'code' directly into the textbox?

thanks all
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top