Print Macro

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

Guest

I'm no macro whizz so pls can anyone who is help me with a bit of code. What
I'd like to do is from a PP Slide Show have a print button that will print
ONLY the current slide to the DEFAULT printer.
Thanks in advance.
 
Hi Jonni,

Add a shape or button and assign it an action setting to run this very
simplified macro. Of course as usual, the macro security levels must be set
to medium or low for this to run.

Sub Not2Hard2Copy()
ActivePresentation.PrintOut ActivePresentation _
.SlideShowWindow.View.CurrentShowPosition
End Sub

--

Bill Dilworth
Microsoft PPT MVP Team
===============
Please spend a few minutes checking vestprog2@
out www.pptfaq.com This link will yahoo.
answer most of our questions, before com
you think to ask them.

Change org to com to defuse anti-spam,
ant-virus, anti-nuisance misdirection.
..
..
 
Back
Top