No Procedures in Procedure Window

  • Thread starter Thread starter Toms River
  • Start date Start date
T

Toms River

In Visual basic I insert a class module
I type in this line"
Public WithEvents appevent As Application
In the Class1 module window, I click to select appevent in the Object list
APPEVENT is not shown only class and general appear
only Initialize and terminate procedures are listed in the procedure list
All I want to do is have a user form automatically open every time a
PowerPoint presentation is opened

Thank You
 
In Visual basic I insert a class module
I type in this line"
Public WithEvents appevent As Application
In the Class1 module window, I click to select appevent in the Object list
APPEVENT is not shown only class and general appear
only Initialize and terminate procedures are listed in the procedure list
All I want to do is have a user form automatically open every time a
PowerPoint presentation is opened

One approach is to create an addin that includes an event handler that traps
the New Presentation event and displays your form as a VBA form rather than a
VB one.

Make PPT respond to events
http://www.pptfaq.com/FAQ00004.htm

Creating and Installing Add-ins, Toolbars, Buttons
http://www.pptfaq.com/index.html#name_Creating_and_Installing_Add-ins-_Toolbars
-_Buttons_
 
Back
Top