It is said here:

http://msdn.microsoft.com/en-us/library/aa211599%28v=office.11%29.aspx

Before the procedure will run, you must connect the declared object in the class module (App in this example) with the Application object. You can do this with the following code from any module.

Dim X As New EventClassModule Sub InitializeApp() Set X.App = Application End Sub

Run the InitializeApp procedure.

Run HOW ? By hand ? I want it to automatically run when opening the powerpoint rather. Is there any way ?

link|improve this question

70% accept rate
feedback

1 Answer

I usually do that in the Auto_Open macro.

See for example http://skp.mvps.org/autoevents.htm

link|improve this answer
yep, this is the only way with VBA (so long as Auto_Open is used in an add-in). – Otaku Jun 6 '10 at 4:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.