Spin Button or Up Down Control

G

Guest

I want to create a PowerPoint slide where a spin button or up/down control can be used to increase or decrease the value in a text box. I can do this very easily with some simple VB

Private Sub SpinButton1_Change(
Me.TextBox1 = Me.SpinButton
End Su

However, when I save and close the PowerPoint show and then open it later, neither the spin button nor the up/down button has any affect on the text box. If I create a new PowerPoint show and repeat the steps above, then it works. But if I close the show and come back later, it happens again! Any ideas? Thanks.
 
C

Chirag

Most probably, the Macro Security settings ("Tools" | "Macros" |
"Security...") are set to High or Very High. Change it to Medium for macros
to work.

- Chirag

PowerShow - View multiple shows simultaneously
http://officeone.mvps.org/powershow/powershow.html

E Chorley said:
I want to create a PowerPoint slide where a spin button or up/down control
can be used to increase or decrease the value in a text box. I can do this
very easily with some simple VB.
Private Sub SpinButton1_Change()
Me.TextBox1 = Me.SpinButton1
End Sub

However, when I save and close the PowerPoint show and then open it later,
neither the spin button nor the up/down button has any affect on the text
box. If I create a new PowerPoint show and repeat the steps above, then it
works. But if I close the show and come back later, it happens again! Any
ideas? Thanks.
 

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

Top