A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Powerpoint, Publisher and Visio » Powerpoint
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

!!iTS INTERESTING!!!!How do i print power point files programitica



 
 
Thread Tools Display Modes
  #1  
Old October 5th, 2007, 08:53 AM posted to microsoft.public.powerpoint
kashif
external usenet poster
 
Posts: 23
Default !!iTS INTERESTING!!!!How do i print power point files programitica

Hi. Is their any way out to apply rules to some slides in a ppt saying the
following slides cannot be printed, and applying those rules even while
printing the presentation,.... ALL THESE HAS TO BE DONE PROGRAMITICALLY
  #2  
Old October 5th, 2007, 02:25 PM posted to microsoft.public.powerpoint
David M. Marcovitz
external usenet poster
 
Posts: 1,267
Default !!iTS INTERESTING!!!!How do i print power point files programitica

=?Utf-8?B?a2FzaGlm?= wrote in
:

Hi. Is their any way out to apply rules to some slides in a ppt saying
the following slides cannot be printed, and applying those rules even
while printing the presentation,.... ALL THESE HAS TO BE DONE
PROGRAMITICALLY


I could be wrong, but I don't think you can specify that a slide is not
for printing if you are going to print with the regular interface.
However, there are a number of things you could if you are doing this
programatically. For example, you could set the slides you don't want
printed to be hidden and then use

ActivePresentation.PrintOptions.PrintHiddenSlides = False

Alternatively, when you are printing, you can specify exactly which
slides to print. Here is an example copied directly from the VBA help:

With ActivePresentation.PrintOptions
.RangeType = ppPrintSlideRange
With .Ranges
.ClearAll
.Add 1, 1
.Add 3, 5
.Add 8, 9
End With
End With
ActivePresentation.PrintOut

I'm sure there are lots more things you can do depending on your specific
needs.

--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/
  #3  
Old October 8th, 2007, 08:18 AM posted to microsoft.public.powerpoint
kashif
external usenet poster
 
Posts: 23
Default !!iTS INTERESTING!!!!How do i print power point files programi

Thank You david , your post did turn out to be very useful, but please can
you say me ho can i apply it using c# not vb
  #4  
Old October 8th, 2007, 03:13 PM posted to microsoft.public.powerpoint
David M. Marcovitz
external usenet poster
 
Posts: 1,267
Default !!iTS INTERESTING!!!!How do i print power point files programi

Sorry, I don't speak C#. Someone else will have to do the translation.
--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/

=?Utf-8?B?a2FzaGlm?= wrote in
:

Thank You david , your post did turn out to be very useful, but please
can you say me ho can i apply it using c# not vb


 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 09:18 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.