Set Up Show Menu

  • Thread starter Thread starter Alexf
  • Start date Start date
A

Alexf

Hello,

Is there any way (using VBA) that the Set Up Show Menu can come up during
the presentation?

This causes a problem, so I'll ask a followup: IS there a way in VBA to end
a slideshow and immediately start it up again?

I was wondering if John or any other VBA expert could help with this.

Thanks in advance.

Alexf
 
You can bring up the slideshow settings dialog with this command. Note that
this will work only in the PowerPoint design interface, it won't popup on
top of the slide show window.

CommandBars.FindControl(Id:=2744).Execute

You can terminate and restart a show as follows:

Dim oPres As Presentation
'Get a reference to the presentation
Set oPres = SlideShowWindows(1).Presentation
'Exit show
SlideShowWindows(1).View.Exit

' Some handling here
DoEvents

'Restart the show
oPres.SlideShowSettings.Run

Regards,
Shyam Pillai

Handout Wizard: http://skp.mvps.org/how
 
Back
Top