J
Janie
I have read the articles in this Forum about using Presentation events. And
I have read the articles in the PPT Tools web site found at www.pptfaq.com.
And I have downloaded the files for autoevents mentioned in the aticle "Make
PPT Respond To Events" ... and I am still not able to achieve my goal on
making sure the hidden slide does not print. Here's what I have done:
1) inserted a Class module named cEventClass
2) in that Class module wrote
Public WithEvents PPTEvent as Application
3) in the class module
Private Sub PPTEvent_PresentationPrint(ByVal Pres As Presentation)
Pres.PrintOptions.PrintHiddenSlides = False
End Sub
4) Insert a module named basEvents
5) In that module wrote:
Dim cPPTObject as New cEventClass
Set cPPTObject.PPTEvent=Application
and that's all I have ... please explain what comes next. I am baffled.
thanks
I have read the articles in the PPT Tools web site found at www.pptfaq.com.
And I have downloaded the files for autoevents mentioned in the aticle "Make
PPT Respond To Events" ... and I am still not able to achieve my goal on
making sure the hidden slide does not print. Here's what I have done:
1) inserted a Class module named cEventClass
2) in that Class module wrote
Public WithEvents PPTEvent as Application
3) in the class module
Private Sub PPTEvent_PresentationPrint(ByVal Pres As Presentation)
Pres.PrintOptions.PrintHiddenSlides = False
End Sub
4) Insert a module named basEvents
5) In that module wrote:
Dim cPPTObject as New cEventClass
Set cPPTObject.PPTEvent=Application
and that's all I have ... please explain what comes next. I am baffled.
thanks