Activating New Presentation dialog from vba?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi
I am trying to create a vba script activating the 'New
Presentation' dialog containing templates. The dialog is
activated from the Task Pane called New Presentation and
from a link called 'On my computer...'
Is it possible to do that? How?
I am working in Office 2003.

Thanks in advance
 
See if this does what you want.

Presentations.Add WithWindow:=msoTrue

ActiveWindow.View.GotoSlide_
Index:=ActivePresentation.Slides.Add(Index:=1,_
Layout:=ppLayoutTitle).SlideIndex

Application.CommandBars("Format")_
..Controls("Slide Design...").Execute

Sorry about the line breaks. It's three separate lines of code.

Brian Reilly, PowerPoint MVP
 
Back
Top