ShowWithAnimation Property Example

This example runs a slide show of the active presentation with animation and narration turned off.

With ActivePresentation.SlideShowSettings
    .ShowWithAnimation = False
    .ShowWithNarration = False
    .Run
End With