Mega Code Archive

 
Categories / VisualBasic Script / Powerpoint
 

Checks that the title master exists and, if it does, formats the date and time to be visible and to use the dMMMyy format with

Sub master()     With ActivePresentation         If .HasTitleMaster Then             With .TitleMaster.HeadersFooters.DateAndTime                 .Visible = msoTrue                 .Format = ppDateTimedMMMyy                 .UseFormat = msoTrue             End With         End If     End With End Sub