VBA/Excel/Access/Word/PowerPoint/Slide Print

Материал из VB Эксперт
Перейти к: навигация, поиск

Prints all the slides in the active presentation:

   <source lang="vb">

Sub printout()

   ActivePresentation.PrintOut

End Sub

</source>
   
  


Print slides 5 through 12 of the presentation

   <source lang="vb">

Sub printFrom()

   ActivePresentation.PrintOut From:=5, To:=12

End Sub

</source>