gmooney
Active Member
- Joined
- Oct 21, 2004
- Messages
- 254
- Office Version
- 365
- Platform
- Windows
Taking this code I would like to add the ability to have the PPT automatically open in slideshow mode:
Private Sub MonthlyToplinePPT()
' Opens Presentation.pptx
Dim PPT As Object
Set PPT = CreateObject("PowerPoint.Application")
PPT.Visible = True
PPT.Presentations.Open Filename:="C:\Topline\Topline Writeup.pptx"
Set PPT = Nothing
End Sub
Any thoughts?
Private Sub MonthlyToplinePPT()
' Opens Presentation.pptx
Dim PPT As Object
Set PPT = CreateObject("PowerPoint.Application")
PPT.Visible = True
PPT.Presentations.Open Filename:="C:\Topline\Topline Writeup.pptx"
Set PPT = Nothing
End Sub
Any thoughts?