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

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

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

Saving All Open Presentations

   <source lang="vb">

Sub Save_All_Presentations()

   Dim myPresentation As Presentation
   For Each myPresentation In Presentations
       If myPresentation.Path <> "" Then myPresentation.Save
   Next myPresentation

End Sub

</source>