Reputation: 11
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
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