VBA to activate a specific presentation

B

Barb Reinhardt

I have the following snippet of code and want to activate myPres

For Each myPres In PPTApp.Presentations
Debug.Print myPres.Name
If myPres.Name = myPPT.Name Then
myPres.Activate 'This doesn't work. What do I need to do
Exit For
End If
Next myPres

Thanks,
Barb Reinhardt
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top