R
Renaat Sohl
I am trying to create a bit of VBA code in Powerpoint that will scroll through a slide and group all shapes that are of the type msoPicture.
I have tried to create a range and then apply the Group function to that range.
To create the range I am going through all shapes and add the names of the shapes that are pictures to a string (like ArrayStr = "Shape 1",'Shape 7","Shape 9"). I than enter that string into the range by using an array (like range(array(ArrayStr)).
But when I do so the systems puts " " around the string which makes it unreadable to the array. (at least that seems the problem to me).
Can anyone tell me how I should do this?
I have tried to create a range and then apply the Group function to that range.
To create the range I am going through all shapes and add the names of the shapes that are pictures to a string (like ArrayStr = "Shape 1",'Shape 7","Shape 9"). I than enter that string into the range by using an array (like range(array(ArrayStr)).
But when I do so the systems puts " " around the string which makes it unreadable to the array. (at least that seems the problem to me).
Can anyone tell me how I should do this?