View Single Post
 
Old 12-11-2012, 04:58 AM
JohnWilson JohnWilson is offline Windows 7 64bit Office 2010 32bit
Programmer
 
Join Date: Nov 2008
Location: UK
Posts: 1,912
JohnWilson has a spectacular aura aboutJohnWilson has a spectacular aura about
Default

This might get you started. Prints the current slide to the default printer

Sub printme()
Dim curr As Long
curr = SlideShowWindows(1).View.CurrentShowPosition
With ActivePresentation.PrintOptions
.RangeType = ppPrintSlideRange
.OutputType = ppPrintOutputSlides
.Ranges.ClearAll
.Ranges.Add Start:=curr, End:=curr
End With
ActivePresentation.PrintOut
End Sub
__________________
Microsoft PowerPoint MVP 2007-2023
Free Advanced PowerPoint Tips and Tutorials
Reply With Quote