I have built OpenPPT to open the specified powerpoint file. Is there a way to have it automatically open in Slideshow mode?
Public Function OpenPPT()
Dim PPObj As Object
Set PPObj = CreateObject("Powerpoint.Application")
PPObj.Visible = True
PPObj.Presentations.Open FileName:="test.pptx"
End Function
Public Function OpenPPT()
Dim PPObj As Object
Set PPObj = CreateObject("Powerpoint.Application")
PPObj.Visible = True
PPObj.Presentations.Open FileName:="test.pptx"
End Function