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
 
Top