inlineshape - converttoshape

F

fedum

Hi,
I have some pictures in my worddocument. I would like to
scale, give them a position and wrap the text around. How
is this possible with a VBA program.
Thanks,
Marc
 
H

Helmut Weber

Hi,
this could be the first step:
Dim oShi As InlineShape
For Each oShi In ActiveDocument.InlineShapes
oShi.ConvertToShape
Next
This could be the next step:
Dim oSh As Shape
For Each oSh In ActiveDocument.Shapes
' whatever. Which is the real problem.
Next
Greetings from Bavaria, Germany
Helmut Weber
"red.sys" & chr$(64) & "t-online.de"
Word 97, NT4.0
 

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