R
Rafa
Hope someone can help.
I would like to run a power point presentation in kiosk mode and then let
the user print out one slide as a proof that he watched the presentation.
The problem is, that it is not printing all the time, but only occassionally
(with one click). With two clicks, it mostly works, but often two slides
where printed. Who can help?
The macro looks like this:
Sub Printlastslide()
'
' Macro created 09/07/2009 by
'
With ActivePresentation.PrintOptions
..RangeType = ppPrintSlideRange
With .Ranges
..ClearAll
..Add Start:=47, End:=47
End With
..NumberOfCopies = 1
..Collate = msoTrue
..OutputType = ppPrintOutputSlides
..PrintHiddenSlides = msoTrue
..PrintColorType = ppPrintColor
..FitToPage = msoFalse
..FrameSlides = msoFalse
End With
ActivePresentation.PrintOut
End Sub
I would like to run a power point presentation in kiosk mode and then let
the user print out one slide as a proof that he watched the presentation.
The problem is, that it is not printing all the time, but only occassionally
(with one click). With two clicks, it mostly works, but often two slides
where printed. Who can help?
The macro looks like this:
Sub Printlastslide()
'
' Macro created 09/07/2009 by
'
With ActivePresentation.PrintOptions
..RangeType = ppPrintSlideRange
With .Ranges
..ClearAll
..Add Start:=47, End:=47
End With
..NumberOfCopies = 1
..Collate = msoTrue
..OutputType = ppPrintOutputSlides
..PrintHiddenSlides = msoTrue
..PrintColorType = ppPrintColor
..FitToPage = msoFalse
..FrameSlides = msoFalse
End With
ActivePresentation.PrintOut
End Sub