View Single Post
  #2  
Old August 15th, 2007, 07:09 PM posted to microsoft.public.powerpoint
Shyam Pillai
external usenet poster
 
Posts: 622
Default Print all slides during slide show

Set the ppPrintCurrent to ppPrintAll.

--
Regards,
Shyam Pillai

Animation Carbon: Copy/Paste/Share animation libraries.
www.animationcarbon.com

"LisaR" wrote in message
...
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!