chris italy
03-03-2010, 10:09 AM
Hi, I am now trying to print out just the comments from a page - ie look at a screen advertising a zoo, click an icon to print out the address and opening times...
I am trying
Sub PrintPresentationComments()
With ActivePresentation
.PrintOptions.OutputType = ppPrintOutputNotesPages
.PrintOut
End With
End Sub
or
With Application.ActivePresentation
With .PrintOptions
.PrintHiddenSlides = False
.FitToPage = True
.PrintComments = True
.FrameSlides = False
.PrintInBackground = False
End With
.ppPrintOutputNotesPages
End With
End Sub
but both of these print the slide aswell.
Am I missing something that should be set to false so just the comments are printed on their own?
As a side thought, it would be handy if i can print a graphic logo on the header of the notes...does this men i should perhaps abandon the notes idea and create a second page with the graphic and the info, then print that entire slide instead????
thanks lots
chris
I am trying
Sub PrintPresentationComments()
With ActivePresentation
.PrintOptions.OutputType = ppPrintOutputNotesPages
.PrintOut
End With
End Sub
or
With Application.ActivePresentation
With .PrintOptions
.PrintHiddenSlides = False
.FitToPage = True
.PrintComments = True
.FrameSlides = False
.PrintInBackground = False
End With
.ppPrintOutputNotesPages
End With
End Sub
but both of these print the slide aswell.
Am I missing something that should be set to false so just the comments are printed on their own?
As a side thought, it would be handy if i can print a graphic logo on the header of the notes...does this men i should perhaps abandon the notes idea and create a second page with the graphic and the info, then print that entire slide instead????
thanks lots
chris