View Property Example

This example uses the View property to exit the current slide show, sets the view in the active window to slide view, and then displays slide three.

Application.SlideShowWindows(1).View.Exit
With Application.ActiveWindow
    .ViewType = ppViewSlide
    .View.GotoSlide 3
End With