select 2 TextRanges

D

David Thielen

thank you.


You can't. PPT only allows one selection at a time.

You can get a reference to various ranges/shapes and store references in
different variables, however.

Ex in VBA:

Dim oSh1 as Shape
Dim oSh2 as Shape

Set oSh1 = ActivePresentation.Slides(1).Shapes("Blah")
Set oSh2 = ActivePresentation.Slides(42).Shapes("Blather")


david@[email protected]
Windward Reports -- http://www.WindwardReports.com
me -- http://dave.thielen.com

Cubicle Wars - http://www.windwardreports.com/film.htm
 

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