Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,069
Default Using Powerpoint inside Exel program

I have been working with an Excel Program I developed in VB and would like to
embed a powerpoint presentation and make it available to the user as a help
and instruction slide show. Is it possible to embed a powerpoint
presentation in an excel workbook? I am using Office 2000 premium.

I really do not like the new "ribbon" office program. Sorry!

--
John
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 10,593
Default Using Powerpoint inside Exel program

Should be as simple as

Dim oPPT As Object
Dim oPres As Object
Const sFilename As String = _
"C:\myFiles\myPP.ppt"

Set oPPT = CreateObject("PowerPoint.Application")
oPPT.Visible = True
Set oPres = oPPT.presentations.Open(sFilename)
oPres.slides(1).Shapes("slideid").Copy
ActiveSheet.Paste
oPres.Close
Set oPres = Nothing
oPPT.Quit
Set oPPT = Nothing

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"John" wrote in message
...
I have been working with an Excel Program I developed in VB and would like
to
embed a powerpoint presentation and make it available to the user as a
help
and instruction slide show. Is it possible to embed a powerpoint
presentation in an excel workbook? I am using Office 2000 premium.

I really do not like the new "ribbon" office program. Sorry!

--
John



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
how do I convert a non exel tabulation to exel dte123 New Users to Excel 2 June 30th 06 02:31 AM
does excell have a free "reader" program like powerpoint raymondao Excel Discussion (Misc queries) 3 February 21st 06 02:57 PM
How do I program telnet using exel through dos? davidleetorres Excel Programming 0 October 13th 05 05:17 PM
How to use exel 98 -02 -2003 if i have xp program? OS Excel Discussion (Misc queries) 1 January 13th 05 06:16 PM
How do I activate the trial exel 2003 program if it does't find c. Dolores Dueck New Users to Excel 1 January 3rd 05 02:19 AM


All times are GMT +1. The time now is 03:32 AM.

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"