PPT97 Printout without confirmation

  • Thread starter Thread starter Lorenz H?lscher
  • Start date Start date
L

Lorenz H?lscher

Hi everyone,

I need to print a lot of PPT97 presentations (from VB6 at least).
Unfortunately wants PPT me to confirm a print dialog every time.

This dialogs will come in both cases:
- if I print with a rightclick "print" on a file name in the explorer
or
- with a VBA ActivePresentation.PrintOut

Is there any chance to print without this need to click on a
[OK]-Button? Please don't suggest the SendKeys "~" idea, this is very,
very instable...

TIA,

Lorenz
 
When I use the following in VBA it prints slide 6 without asking me to
confirm printing. Will this help you?

Sub PrintResults()
ActivePresentation.PrintOptions.OutputType = ppPrintOutputSlides
ActivePresentation.PrintOut From:=6, To:=6
End Sub

--David

David M. Marcovitz
Author of _Powerful PowerPoint for Educators_
http://www.loyola.edu/education/PowerfulPowerPoint/
 
Hi David,
When I use the following in VBA it prints slide 6 without asking me to
confirm printing. Will this help you?
Yes, it does. The .PrintOut code doesn't ask me any more for
confirmating any dialog. Don't ask me what I tried the last hours...

Thanks for your help, I think I'd better have a break!

Lorenz
 
Back
Top