View Single Post
 
Old 10-08-2010, 09:50 AM
Lingodawg Lingodawg is offline Windows 7 Office 2003
Novice
 
Join Date: Oct 2010
Posts: 3
Lingodawg is on a distinguished road
Default

Quote:
Originally Posted by Kimberly View Post
You can do lots of things with VBA. For example, hide a slide on Mondays:

Code:
Sub MyRules()
    If DatePart("w", Date) = vbMonday Then
        ActivePresentation.Slides(3).SlideShowTransition.Hidden = msoTrue
    Else
        ActivePresentation.Slides(3).SlideShowTransition.Hidden = msoFalse
    End If
 End Sub
I will have to look into VBA. But the thing is that the presentations will be made by old people who really need a point and click gui. Would it be possible to build something like this with VBA?
Reply With Quote