Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Controlling PowerPoint Slideshow

When a slideshow running in PowerPoint I want to control the movement (Next and Previous) of the slides. Of course it is possible with the > and < button on the keyboard, but is there any way in which I can have a custom application listening to the Next and Previous controls?

My custom application has nothing but 2 buttons, next and previous, when I click either, the button's event handler should pass the control to the PowerPoint application running the slideshow. And thus, PowerPoint will move the slideshow back or forward?

Somewhat similar to the way remote, wireless PowerPoint Presenters work on the s/w end.

like image 677
Jayesh Avatar asked Jun 08 '10 05:06

Jayesh


People also ask

Can multiple people control PowerPoint slides?

This avoids the need to ask the presenter to change the slide when they are ready, interrupting the flow of the meeting and presentation. Slide control can be given to multiple participants in a meeting, or multiple panelists in a webinar.

Can you lock things on a PowerPoint slide?

To insert an object, click Insert > Shapes and select the shape you want. To lock the shape you just inserted, right- click it and then click Lock on the shortcut menu, or click the Selection Pane button on the Shape Format menu, and then click the Lock icon to the right of the object name.

Can multiple users edit PowerPoint at the same time?

Share your presentation with others and collaborate on it at the same time. in the top-right corner of the ribbon when you're ready to collaborate. If you haven't saved your presentation to OneDrive or SharePoint in Microsoft 365, PowerPoint prompts you to do so now.


1 Answers

Yeah, totally doable. The event you want is SlideShowNextSlide - you can read more about it here. For C# and PowerPoint-specific, this is a great article: How to handle PowerPoint events with Visual C# .NET.

Also, this search on SO turns up some good reading and things to watch out for. Finally, I don't know if C# has one, but there is a "Remotely Controlling PowerPoint" sample in both VS2008/VS2010 for VB.NET that is probably easy enough to port to C# - here's the info page on it.

like image 200
Todd Main Avatar answered Sep 30 '22 11:09

Todd Main