VBA PowerPoint Online Guide and How to Record a Macro

powerpoint, vba

Solution

Microsoft remove macro recorder from PowerPoint 2007.

To view the struct of objects use Watch (Shift +F9) in object.

For Example

dim ppt as powerpoint.Presentation

set ppt =activepresentation

add watch to ppt to view the struct of object Presentation

otherwise

Add a new class module

in the class declare

Private WithEvents ppt As PowerPoint.Application

in comon module declare one instance from classCreate(default is Class1) using

set x= new class1

Now in module class you can get events for you presentation (in left combo up the code window)

Bruno Leite

Office Developer

Problem

Could anyone recommend to me a good online guide to PowerPoint VBA? Also, does anyone has advice on how to record a macro in PowerPoint?

Original source