473,721 Members | 1,930 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

controlling Ms Powerpoint Slide show using Vb.net

2 New Member
hi all,

i want to run the slide show say ten slides and then close it , but in my code given below it opens the slide show and closes immediately ... ..
please give me a solution to this problem

1. Please add MsPowerpoint11. 0 object present in COM in ur references.

2. Code : --
Expand|Select|Wrap|Line Numbers
  1. Dim appPowerpoint as Powerpoint.Application 
  2. dim book as Powerpoint.presentation 
  3. dim slide as powerpoint.slides 
  4. dim picture as powerpoint.sliderenge 
  5. dim path as string ' location of the file  
  6.  
  7. appPowerpoint = new Powerpoint.Application
  8. appPowerpoint.Active( )
  9. appPowerpoint.NewPresentation.add(1,,) 
  10.  
  11.  path  = "d:\x.ppt"
  12.  
  13. appPowerpoint.presentation.open(path,commes automatically(select the first choice),commes automatically(select the first choice))
  14.  
  15. appPowerpoint.activePresentation.slideshow.run() 
  16.  
  17. '........
  18. ....... some code is   needed so that i  run the slide show say 10 slides and then  close it 
  19. .......
  20.  
  21. but 
  22. 'it quits immediately ........  
  23.  
  24. appPowerpoint.activePresentation.close
  25. appPowerpoint.windows.application.quit
please reply back as soon as possible...


with thanks,
mumbaisalsa
Nov 17 '07 #1
1 13922
mumbaisalsa
2 New Member
i got the solution to the problem ... .
appPowerpoint.A ctivePresentati on.SlideShowSet tings.Run.View. GotoSlide(i, Microsoft.Offic e.Core.MsoTriSt ate.msoCTrue = Microsoft.Offic e.Core.MsoTriSt ate.msoCTrue)

added the above code and it works .......
thanks
mumbaisalsa

i want to run the slide show say ten slides and then close it , but in my code given below it opens the slide show and closes immediately ... ..
please give me a solution to this problem

1. Please add MsPowerpoint11. 0 object present in COM in ur references.

2. Code : --
Expand|Select|Wrap|Line Numbers
  1. Dim appPowerpoint as Powerpoint.Application 
  2. dim book as Powerpoint.presentation 
  3. dim slide as powerpoint.slides 
  4. dim picture as powerpoint.sliderenge 
  5. dim path as string ' location of the file  
  6.  
  7. appPowerpoint = new Powerpoint.Application
  8. appPowerpoint.Active( )
  9. appPowerpoint.NewPresentation.add(1,,) 
  10.  
  11.  path  = "d:\x.ppt"
  12.  
  13. appPowerpoint.presentation.open(path,commes automatically(select the first choice),commes automatically(select the first choice))
  14.  
  15. appPowerpoint.activePresentation.slideshow.run() 
  16.  
  17. '........
  18. ....... some code is   needed so that i  run the slide show say 10 slides and then  close it 
  19. .......
  20.  
  21. but 
  22. 'it quits immediately ........  
  23.  
  24. appPowerpoint.activePresentation.close
  25. appPowerpoint.windows.application.quit
please reply back as soon as possible...


with thanks,
mumbaisalsa
Nov 20 '07 #2

Sign in to post your reply or Sign up for a free account.

Similar topics

0
568
by: Ata | last post by:
Hello, I am trying to copy the contents of the output of SQL Reporting Services to a PowerPoint slide. For this, I am using SQL Reporting Services to obtain an IMAGE stream, which I paste to the Windows clipboard. Then, using automation, I am trying to copy this information from the clipboard to a PowerPoint slide. However, I get an error at slide.Shapes.PasteSpecial. I am able create a System.Drawing.Bitmap object from the memory...
9
12394
by: Michael Burtenshaw | last post by:
I would like to make a slide show using random images. The problem is my host is 250.com, and they don't support cgi-programs. Is there another way to accomplish random images?
0
4214
by: ProfessorKaos | last post by:
I'm trying to open a slide show from an application but I am receiving an error when tring to reference the PowerPoint.Presentation object. I'm not sure if it a framework, registry, or version issue. Or I could be off on all my guesses. I think if I can get this error fixed the code "should" work. Error: COM object with CLSID {91493444-5A91-11CF-8700-00AA0060263B} is either not valid or not registered. Line Throwing Error:
0
1714
by: denvercr | last post by:
Hi Guys, If you can help me on this problem, how can i possibly call or run a powerpoint slideshow when clicking a button in an asp.net page? Thank you guys for your assistance..
0
6658
by: Czechfish | last post by:
How do I change my script to automatically play, rather than clicking through individual slides? What is the action script to skip to a specific slide in the show via a button? (Right now I have a next an previous buttons.) Here is my script: slides_xml = new XML(); slides_xml.onLoad = startSlideShow; slides_xml.load("conferencephotos.xml"); slides_xml.ignoreWhite = true;
1
2280
by: bsg92150 | last post by:
i have a task that requires me to provide a web use with the ability to send teh current page to a power point slide. and to further complicate matters. the user may want to put the whole site into a slide. the problem is that the information is database driven and the user may not have visted the pages tha/ thankst he is requestion to download. my question is is this possable and is there an example out there that i can look at
5
2189
by: ZEBEDEE | last post by:
i am creating a powerPoint like software using VB6, and i cannot implement the idea of having a multiple slide in my project,,,, can somebody help regarding my problem,, tnx a lot :)
0
2021
by: impin | last post by:
i have a created a blog in blogspot. i want add a photo slide show in the blog... so i created a photo slide show using flash, xml and style sheets with my own photos... is it possible to add the slide show to the blog? we can add slide shows through flickr, photbucket... i dont want to add photos through tat.. is it possible to add my own slide show to the blog?
0
8730
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9367
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9215
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9064
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8007
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6669
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4484
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4753
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3189
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.