R
Ray Batig
Greetings,
I just started to write VB code for Powerpoint. The following code hides the
titles on all the slides.
Sub HideSlideTitles()
' Hides slide title by hiding the shape
Dim oSlide As Slide
For Each oSlide In ActiveWindow.Presentation.Slides
oSlide.Shapes.Title.Visible = msoFalse
Next oSlide
End Sub
The question is how do I skip the first slide which is the presentation
title page.
Any help or ideas are appreciated!
Thanks in advance!
I just started to write VB code for Powerpoint. The following code hides the
titles on all the slides.
Sub HideSlideTitles()
' Hides slide title by hiding the shape
Dim oSlide As Slide
For Each oSlide In ActiveWindow.Presentation.Slides
oSlide.Shapes.Title.Visible = msoFalse
Next oSlide
End Sub
The question is how do I skip the first slide which is the presentation
title page.
Any help or ideas are appreciated!
Thanks in advance!