user1581002
user1581002

Reputation: 11

PowerPoint 2010 Open New Presentation Dialog from VBA

I need to simulate the action File > New > My Templates (from the Available Templates and Themes) via a VBA macro / code.

This presents the "New Presentation" dialog.

There is no macro recorder in PowerPoint 2010.

Upvotes: 0

Views: 663

Answers (1)

gordon613
gordon613

Reputation: 2952

I don't think you can. I think all you can do is use code to open the standard file dialog e.g.

Application.FileDialog(ppFileDialogOpen).show

Upvotes: 1

Related Questions