Launch a PowerPoint Presentation in presenter view programmaticall

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.
 
C

Cosmo

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top