VBA/Excel/Access/Word/PowerPoint/Slide Print — различия между версиями

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

Текущая версия на 15:46, 26 мая 2010

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>