View Single Post
 
Old 04-07-2015, 10:16 AM
JohnWilson JohnWilson is offline Windows 7 64bit Office 2010 32bit
Programmer
 
Join Date: Nov 2008
Location: UK
Posts: 1,912
JohnWilson has a spectacular aura aboutJohnWilson has a spectacular aura about
Default

This sort of thing

Code:
Private Sub CheckBox1_Click()
' this would hide or show slides 2, 3 & 3
With ActivePresentation.Slides.Range(Array(2, 3, 4)).SlideShowTransition
If Me.CheckBox1.Value = True Then
.Hidden = False
Else
.Hidden = True
End If
End With
End Sub
__________________
Microsoft PowerPoint MVP 2007-2023
Free Advanced PowerPoint Tips and Tutorials
Reply With Quote