P
Preschool Mike
Is there a way to refresh every slide in the slide show using vba. I found
the follow that will refresh the current slide but I need every slide to
refresh/reset. I also realize I can put a blank slide between each slide
with animation set to zero but that will make my show have a lot more slides
than I really want.
Sub RefreshSlide()
Dim lSlideIndex As Long
lSlideIndex = SlideShowWindows(1).View.CurrentShowPosition
SlideShowWindows(1).View.GotoSlide lSlideIndex
End Sub
the follow that will refresh the current slide but I need every slide to
refresh/reset. I also realize I can put a blank slide between each slide
with animation set to zero but that will make my show have a lot more slides
than I really want.
Sub RefreshSlide()
Dim lSlideIndex As Long
lSlideIndex = SlideShowWindows(1).View.CurrentShowPosition
SlideShowWindows(1).View.GotoSlide lSlideIndex
End Sub