Print PowerPoint from Access using VBA

G

Gary

I would like to print the just last page of a power point document using OLE
from
Access VBA Code.

I am able to print a complete document with:

Static oPPT As PowerPoint.Application
Static oPres As Presentation

Set oPres = GetObject(Filter_Filename & ".ppt")
oPres.PrintOut
oPres.Close
Set oPres = Nothing

How can I do that?


Thanks,

Gary
 
Top