Thread: slideshow
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Jim Thomlinson Jim Thomlinson is offline
external usenet poster
 
Posts: 5,939
Default 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