#1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 122
Default 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
  #2   Report Post  
Posted to microsoft.public.excel.programming
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

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
can i insert a excel file in to a slideshow dave loydon Excel Discussion (Misc queries) 3 April 26th 10 04:17 PM
Embed powerpoint slideshow into excel workbook rm84 Excel Discussion (Misc queries) 5 September 29th 09 10:52 PM
Hyperlink from Excel to Powerpoint file opens as slideshow, why? Sntee Excel Discussion (Misc queries) 0 April 11th 07 12:30 PM
Why Can't I Play my Slideshow On my Computer? Promblems With SlideShow Charts and Charting in Excel 1 June 28th 06 03:54 AM
VBA to Adjust an Excel Chart Embedded into PPT while in SlideShow Mona-ABE Excel Programming 0 August 9th 05 09:07 PM


All times are GMT +1. The time now is 11:14 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"