T Ted Jan 21, 2009 #1 I am trying to print handout versions (B&W, 2per page) for 50+ presentations at once. Is there a way to do these as a batch?
I am trying to print handout versions (B&W, 2per page) for 50+ presentations at once. Is there a way to do these as a batch?
J John Wilson Jan 21, 2009 #2 Hows your vba coding? Steve has examples of "do something to every presentation in a folder" http://www.pptfaq.com/FAQ00594.htm In the do something part you would need something like this (air code not tested) With oPres.PrintOptions ..PrintColorType = ppPrintBlackAndWhite ..OutputType = ppPrintOutputTwoSlideHandouts ..RangeType = ppPrintAll End With oPres.PrintOut -- john ATSIGN PPTAlchemy.co.uk Custom vba coding and PPT Makeovers Free PPT Hints, Tips and Tutorials http://www.pptalchemy.co.uk/powerpoint_hints_and_tips_tutorials.html
Hows your vba coding? Steve has examples of "do something to every presentation in a folder" http://www.pptfaq.com/FAQ00594.htm In the do something part you would need something like this (air code not tested) With oPres.PrintOptions ..PrintColorType = ppPrintBlackAndWhite ..OutputType = ppPrintOutputTwoSlideHandouts ..RangeType = ppPrintAll End With oPres.PrintOut -- john ATSIGN PPTAlchemy.co.uk Custom vba coding and PPT Makeovers Free PPT Hints, Tips and Tutorials http://www.pptalchemy.co.uk/powerpoint_hints_and_tips_tutorials.html