A Preview of A shape

  • Thread starter Thread starter Chirag
  • Start date Start date
Hi Ev1,
I'm making a macro that presents a form with a list box that shows all
the shapes on the current slide.
I would like to show the Shape image as well.
This is the Code:
With ActivePresentation.Slides(1)
For Each S In MyShapes
UserForm1.ListBox1.AddItem (MyShapes(i).Name)
i = i + 1
Next
End With
The Question is, how do i get the Shape's Preview? does it available
for me to load it as an image?

Thanx,
Gil H.
 
Thanks, that solution can do.
But is there a way to Export / Save those images in an imagelist
directly? it will save me to copy them to c:\ folder...

Thanx,
Gil H
 
Back
Top