ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   slideshow (https://www.excelbanter.com/excel-programming/414897-slideshow.html)

glenn

slideshow
 
Is there a macro that I can write into my program that will allow me to click
on a clipart object to start a powerpoint 03 slideshow. I know how to assign
the macro to the clipart object. But I have no clue as if this is
possible. I am a novice so please do not get to complicated....thanks GLENN

Jim Thomlinson

slideshow
 
Something like this should be close...

Sub StartShow()
Dim ppt As Object
Dim ppp As Object

Set ppt = CreateObject("PowerPoint.Application")
ppt.Visible = msoTrue
Set ppp = ppt.Presentations.Open("C:\MyShow.ppt")
ppp.SlideShowSettings.Run
End Sub

--
HTH...

Jim Thomlinson


"Glenn" wrote:

Is there a macro that I can write into my program that will allow me to click
on a clipart object to start a powerpoint 03 slideshow. I know how to assign
the macro to the clipart object. But I have no clue as if this is
possible. I am a novice so please do not get to complicated....thanks GLENN



All times are GMT +1. The time now is 01:52 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com