select 2 TextRanges

  • Thread starter Thread starter David Thielen
  • Start date Start date
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
 
Back
Top