Print all slides during slide show

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi, I'm trying to create a macro that will allow the viewer of the PowerPoint
presentation (slide show) to print all of the slides when they click a Print
button I've created. The code I'm using will print the current slide, but I
don't know the syntax to change it to print all of the slides. Here's the
code I'm using:

Sub prnt()
ActivePresentation.PrintOptions.RangeType = ppPrintCurrent
ActivePresentation.PrintOut
End Sub

Thank you!
 
I tried this, but it still only printed the first slide (the slide that
contains the button). I set up the macro in the VB editor as a "module." Is
this how I should have done it?
Thanks!
Lisa.
 
Hi

With Shyam's mod the code should definitely print all slides. If you have
inserted it in a module you should have a shape or an action button (not a
command button) with an action setting of run macro.
 
Back
Top