T
thomas.schoenfelder
I'm working on a Quiz Game with PP2003.
The following code changes the picture of a CommandButton (cuurent
slide only) when clicking on it
""
Private Sub CommandButton1_Click()
CommandButton1.Picture = LoadPicture("D:\MyPicture.jpg")
End Sub
""
Along with this click I want to change pictures of all other
CommandButtons on other slides.
I tried something like this:
ActivePresentation.Slides(4).CommandButton1.Picture =
LoadPicture("D:\MyPicture.jpg")
but it wont' work.
??? How do I accesss properties of all other CommandButtons I have in
other slides ???
The following code changes the picture of a CommandButton (cuurent
slide only) when clicking on it
""
Private Sub CommandButton1_Click()
CommandButton1.Picture = LoadPicture("D:\MyPicture.jpg")
End Sub
""
Along with this click I want to change pictures of all other
CommandButtons on other slides.
I tried something like this:
ActivePresentation.Slides(4).CommandButton1.Picture =
LoadPicture("D:\MyPicture.jpg")
but it wont' work.
??? How do I accesss properties of all other CommandButtons I have in
other slides ???