J
John Crawford
I wish to use a clock display on my slides. I do not want to use an
addin, because I need to run the presentation on different machines.
What I want to do is have a command button in the slide. When I click
the button I need the text on the button to display the clock. I am
using PP2000, and VB to do the code. The onclick command looks like this
Private Sub btnClock_Click()
btnClock.Caption = "Time"
rc = TimerStartStop()
End Sub
I have a module that contains the TimerStartStop function. So far the
information that I think I need looks like this
'The current slide
SlideNo = SlideShowWindows(1).View.Slide.SlideIndex
'Get the current slide
Set mydocument = ActivePresentation.Slides(SlideNo)
'The only property that has a text value is this
mydocument.Shapes("btnClock").AlternativeText = Time
However Alternative text does not change the text on the button. Is
there a property that I can use to change the text in this way?
Thanks in advance
John Crawford
addin, because I need to run the presentation on different machines.
What I want to do is have a command button in the slide. When I click
the button I need the text on the button to display the clock. I am
using PP2000, and VB to do the code. The onclick command looks like this
Private Sub btnClock_Click()
btnClock.Caption = "Time"
rc = TimerStartStop()
End Sub
I have a module that contains the TimerStartStop function. So far the
information that I think I need looks like this
'The current slide
SlideNo = SlideShowWindows(1).View.Slide.SlideIndex
'Get the current slide
Set mydocument = ActivePresentation.Slides(SlideNo)
'The only property that has a text value is this
mydocument.Shapes("btnClock").AlternativeText = Time
However Alternative text does not change the text on the button. Is
there a property that I can use to change the text in this way?
Thanks in advance
John Crawford