Need to enable the objects to also be inserted into current slide in normal view, not just a selecte

T

Tyron

Need to enable the objects to also be inserted into current slide in
normal view, not just a selected slide. Also need the if statement to
work taking that into consideration



Private Sub TableA_Click()
If ActiveWindow.Selection.Type = ppSelectionSlides Then
Else
MsgBox "Must select a slide"
Exit Sub
End If
With Presentations.Open("G:\Tyronne Soanes\Testingb.ppt", msoFalse)
.Slides(54).Shapes.Range(Array("Text Box 7", "Rectangle 3", "Object
9")).Copy
.Close
End With
ActiveWindow.Selection.SlideRange(1).Shapes.Paste
End Sub
 

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

Similar Threads


Top