Print from SlideShow view in PPT

  • Thread starter Thread starter homokyz
  • Start date Start date
H

homokyz

Could anyone help how to print a slide from slideshow view? Thanks for
your help in advance! Zoltan
 
(e-mail address removed) wrote in 50g2000hsm.googlegroups.com:
Could anyone help how to print a slide from slideshow view? Thanks for
your help in advance! Zoltan

In the viewer, there is a keystroke that allows you to print. In regular
PowerPoint, I think you would need a macro. The details of the macro vary
depending on exactly what you want to print, but

ActivePresentation.PrintOut

is the basic method for printing.

--David

--
David M. Marcovitz
Microsoft PowerPoint MVP
Director of Graduate Programs in Educational Technology
Loyola College in Maryland
Author of _Powerful PowerPoint for Educators_
http://www.PowerfulPowerPoint.com/
 
(e-mail address removed) wrote in 50g2000hsm.googlegroups.com:


In the viewer, there is a keystroke that allows you to print. In regular
PowerPoint, I think you would need a macro. The details of the macro vary
depending on exactly what you want to print, but

ActivePresentation.PrintOut

is the basic method for printing.

--David

--
David M. Marcovitz
Microsoft PowerPoint MVP
Director of Graduate Programs in Educational Technology
Loyola College in Maryland
Author of _Powerful PowerPoint for Educators_http://www.PowerfulPowerPoint.com/

Thank you David,

I created a "Print" button on the slide, but I need a full macro Sub
to print the actual slide from slideshow view. If you could help to
create write a macro, would highly appreciated.

By the way do you have any idea how to add a picture to the slide from
slideshow view, by browsing in a specific folder or select from a
list.

Thank you in advance, Zoltan
 
(e-mail address removed) wrote in
Thank you David,

I created a "Print" button on the slide, but I need a full macro Sub
to print the actual slide from slideshow view. If you could help to
create write a macro, would highly appreciated.

By the way do you have any idea how to add a picture to the slide from
slideshow view, by browsing in a specific folder or select from a
list.

Thank you in advance, Zoltan

Here is some code to print the current slide in Slide Show view:

Sub PrintCurrent()
Dim iSlideIndex As Long
iSlideIndex = _
ActivePresentation.SlideShowWindow.View.Slide.SlideIndex
ActivePresentation.PrintOut From:=iSlideIndex, To:=iSlideIndex
End Sub

--
David M. Marcovitz
Microsoft PowerPoint MVP
Director of Graduate Programs in Educational Technology
Loyola College in Maryland
Author of _Powerful PowerPoint for Educators_
http://www.PowerfulPowerPoint.com/
 
(e-mail address removed) wrote in









Here is some code to print the current slide in Slide Show view:

Sub PrintCurrent()
Dim iSlideIndex As Long
iSlideIndex = _
ActivePresentation.SlideShowWindow.View.Slide.SlideIndex
ActivePresentation.PrintOut From:=iSlideIndex, To:=iSlideIndex
End Sub

--
David M. Marcovitz
Microsoft PowerPoint MVP
Director of Graduate Programs in Educational Technology
Loyola College in Maryland
Author of _Powerful PowerPoint for Educators_http://www.PowerfulPowerPoint.com/- Hide quoted text -

- Show quoted text -
 
(e-mail address removed) wrote in









Here is some code to print the current slide in Slide Show view:

Sub PrintCurrent()
Dim iSlideIndex As Long
iSlideIndex = _
ActivePresentation.SlideShowWindow.View.Slide.SlideIndex
ActivePresentation.PrintOut From:=iSlideIndex, To:=iSlideIndex
End Sub

--
David M. Marcovitz
Microsoft PowerPoint MVP
Director of Graduate Programs in Educational Technology
Loyola College in Maryland
Author of _Powerful PowerPoint for Educators_http://www.PowerfulPowerPoint.com/- Hide quoted text -

- Show quoted text -

Thank you David!
 
Back
Top