Jack Guy
Jack Guy

Reputation: 8523

Office VBA- detect PowerPoint slide change

I'm creating an application where I'd like to be able to show users an ongoing PowerPoint presentation over the web, where the slide changes as the presenter does so in real time. I've looked at the Office VBA documentation and I didn't see any event for this. The closest I've come are these events, but I don't see anyway of doing what I need to using these.

How can I detect slide changes in Microsoft Powerpoint using Visual Basic?

Upvotes: 0

Views: 1319

Answers (1)

ex-man
ex-man

Reputation: 390

It seems that this is what you are looking for: Application.SlideShowNextSlide Event

This is VBA Powerpoint object model though, but you should be able to find your way around...

Upvotes: 1

Related Questions