G
Guest
Hi NG
i have the following problem
In a loop, i want to cycle through all slides and all shapes on each slide and turn all optionbuttons off
(like a "reset the presentation" button
So far, I have
Private Sub CommandButton2_Click(
Dim myctrl As Contro
For Each sld In ActivePresentation.Slide
For Each shp In sld.Shape
If shp.Type = 12 Then 'the only way i found to identify optionbuttons is with this type valu
myctrl.Value = Fals
End I
Nex
Nex
End Su
But this doesnt work. Where am I going the wrong way
thank
Timo
i have the following problem
In a loop, i want to cycle through all slides and all shapes on each slide and turn all optionbuttons off
(like a "reset the presentation" button
So far, I have
Private Sub CommandButton2_Click(
Dim myctrl As Contro
For Each sld In ActivePresentation.Slide
For Each shp In sld.Shape
If shp.Type = 12 Then 'the only way i found to identify optionbuttons is with this type valu
myctrl.Value = Fals
End I
Nex
Nex
End Su
But this doesnt work. Where am I going the wrong way
thank
Timo