Printing Notes Page Of Current Slide

D

Dennis

I'm trying to print the notes page of a slide. I'm using the following code
from a button on that particular slide.

With ActivePresentation.PrintOptions
.RangeType = ppPrintCurrent
.NumberOfCopies = 1
.Collate = msoTrue
.OutputType = ppPrintOutputNotesPages
.PrintHiddenSlides = msoTrue
.PrintColorType = ppPrintBlackAndWhite
.FitToPage = msoFalse
.FrameSlides = msoFalse
'.ActivePrinter
End With
ActivePresentation.PrintOut

The problem is that is prints the previous slide's notes rather than the
slide with the button. Is it a matter of focus? Is there code I can use to
insure that the focus is on the page with the button before executing the
above? I want to use the button\code on several different slides.

Any help would be appreciated.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top