Hi, Dan!
Why not playing a PowerPoint file at open time?
Regards!
Sub Workbook_Open()
'Auto Open PowerPoint Show when Excel Workbook opens
Dim objPPT As Object
Set objPPT = CreateObject("PowerPoint.Application")
objPPT.Visible = True
'Change the directory path and file name to the location of PP document
objPPT.Presentations.Open "\\SharePoint2010teamsiteFilepath\Splash.ppsx"
'Set Active Worksheet to display
ActiveWorkbook.Sheets("On-time Delivery").Activate
End Sub
Hi, Dan!
Problem 1.
First check if the project has these references, and then try again:
Visual Basic For Applications
OLE Automation
Microsoft Office 15.0 Object Library
Microsoft Excel 15.0 Object Library
Microsoft Powerpoint 15.0 Object Library
Maybe you find any other versions than 15.0 (2013), use the one you get displayed.
Problem 2 & 3.
If still happen after 1., then consider uploading (a) sample file(s) (including manual examples of desired output if applicable), it'd be very useful for those who read this and might be able to help you.
Regards!
Problem 3 is still there. I solved Problem 2 by modifying my code to play the PowerPoint show in a PowerPoint Kiosk but now get an unwanted message asking the user if they want to save changes to the PowerPoint show and a new error (Problem 4) "Run-time error "-2147467259 (80004005)': SlideShowView.State : Object does not exist." when I click on the Debug button it takes me to the "Do Until objSlideShow.State = ppSlideShowDone" line in my code (See attached txt file)...Hi, Dan!
And what happened with Problem 2 & 3, were they solved after 1 or still there, smiling?
Regards!