Printing in PowerPoint

C

Calin

Hello

I builded a COM addin for PowerPoint which is used for catching the events
fired by application. I need to know how to cancel the printing. Before the
Print dialog pops up, I get the Print event but I don't have a "Cancel"
parameter like in Word.

Do you have any ideea about this ?

Thanks, Calin
 
J

Jerry Hammond

The following code might help:

This example closes all open presentations.
With Application.Presentations
For i = .Count To 1 Step -1
.Item(i).Close
Next
End With
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top