Launch a PowerPoint Presentation in presenter view programmaticall

  • Thread starter Thread starter Netzer
  • Start date Start date
N

Netzer

I'm trying to launch a power point from code,
I can create it fine, and launch it,
but I want it to automatically go into presenter view.

The only way it works for now is to launch the presentation manually.
 
The following line:

myPres.SlideShowSettings.Run

should work, where myPres is a variable reference to your presentation. You
can also set parameters for the presentation when it is run:

With myPres.SlideShowSettings
.ShowType = ppShowTypeSpeaker
With .Run
.View.State = ppSlideShowRunning
.View.PointerType = ppSlideShowPointerArrow
.Height = 500
.Top = 0
End With
End With
 
Back
Top