I want to remove all the Shapes that are in the top of InlineShapes, and ONLY
those.
I already have a code that select the InLineShape and format them.
What I can't do, is Delete all the Shapes in the select Paragraph, or in the
InlineShapes.
Can you help me with this?

Re: Shape by Jean-Guy

Jean-Guy
Sun Mar 05 15:19:08 CST 2006

RRodrigues was telling us:
RRodrigues nous racontait que :

> I want to remove all the Shapes that are in the top of InlineShapes,
> and ONLY those.

Sorry, but I don't quite get what you mean by this.

--
Salut!
_______________________________________
Jean-Guy Marcil - Word MVP
jmarcilREMOVE@CAPSsympatico.caTHISTOO
Word MVP site: http://www.word.mvps.org



Re: Shape by RRodrigues

RRodrigues
Sun Mar 05 18:36:26 CST 2006

Ok, let me rephrase it.
In my document, I have several pictures.
In some of them, I have drawn some shapes.
Now I want to delete the shapes that are in the top of the pictures.
However, I have also made some shapes in the rest of the document, and I
want to keep these ones.
I guess one of the ways, is selecting the Paragraphs that contain the Inline
Shapes, and then Delete the Shapes in the Selection.
I have already created a code that selects these Paragraphs.
What I need is a code to delete the Shapes that are in this selection.
Can you help me with this?

"Jean-Guy Marcil" wrote:

> RRodrigues was telling us:
> RRodrigues nous racontait que :
>
> > I want to remove all the Shapes that are in the top of InlineShapes,
> > and ONLY those.
>
> Sorry, but I don't quite get what you mean by this.
>
> --
> Salut!
> _______________________________________
> Jean-Guy Marcil - Word MVP
> jmarcilREMOVE@CAPSsympatico.caTHISTOO
> Word MVP site: http://www.word.mvps.org
>
>
>

Re: Shape by Jay

Jay
Sun Mar 05 19:51:08 CST 2006

Use this code:

On Error Resume Next
Selection.Range.ShapeRange.Delete

It will delete any floating shapes but leave inline shapes intact.
(The On Error statement prevents a "Requested object is not available"
error if the paragraph doesn't contain any floating shapes.)

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the
newsgroup so all may benefit.

On Sun, 5 Mar 2006 16:36:26 -0800, RRodrigues
<RRodrigues@discussions.microsoft.com> wrote:

>Ok, let me rephrase it.
>In my document, I have several pictures.
>In some of them, I have drawn some shapes.
>Now I want to delete the shapes that are in the top of the pictures.
>However, I have also made some shapes in the rest of the document, and I
>want to keep these ones.
>I guess one of the ways, is selecting the Paragraphs that contain the Inline
>Shapes, and then Delete the Shapes in the Selection.
>I have already created a code that selects these Paragraphs.
>What I need is a code to delete the Shapes that are in this selection.
>Can you help me with this?
>
>"Jean-Guy Marcil" wrote:
>
>> RRodrigues was telling us:
>> RRodrigues nous racontait que :
>>
>> > I want to remove all the Shapes that are in the top of InlineShapes,
>> > and ONLY those.
>>
>> Sorry, but I don't quite get what you mean by this.
>>
>> --
>> Salut!
>> _______________________________________
>> Jean-Guy Marcil - Word MVP
>> jmarcilREMOVE@CAPSsympatico.caTHISTOO
>> Word MVP site: http://www.word.mvps.org
>>
>>
>>

Re: Shape by RRodrigues

RRodrigues
Mon Mar 06 02:22:28 CST 2006

Thank you! That was perfect! You're the best!

"Jay Freedman" wrote:

> Use this code:
>
> On Error Resume Next
> Selection.Range.ShapeRange.Delete
>
> It will delete any floating shapes but leave inline shapes intact.
> (The On Error statement prevents a "Requested object is not available"
> error if the paragraph doesn't contain any floating shapes.)
>
> --
> Regards,
> Jay Freedman
> Microsoft Word MVP FAQ: http://word.mvps.org
> Email cannot be acknowledged; please post all follow-ups to the
> newsgroup so all may benefit.
>
> On Sun, 5 Mar 2006 16:36:26 -0800, RRodrigues
> <RRodrigues@discussions.microsoft.com> wrote:
>
> >Ok, let me rephrase it.
> >In my document, I have several pictures.
> >In some of them, I have drawn some shapes.
> >Now I want to delete the shapes that are in the top of the pictures.
> >However, I have also made some shapes in the rest of the document, and I
> >want to keep these ones.
> >I guess one of the ways, is selecting the Paragraphs that contain the Inline
> >Shapes, and then Delete the Shapes in the Selection.
> >I have already created a code that selects these Paragraphs.
> >What I need is a code to delete the Shapes that are in this selection.
> >Can you help me with this?
> >
> >"Jean-Guy Marcil" wrote:
> >
> >> RRodrigues was telling us:
> >> RRodrigues nous racontait que :
> >>
> >> > I want to remove all the Shapes that are in the top of InlineShapes,
> >> > and ONLY those.
> >>
> >> Sorry, but I don't quite get what you mean by this.
> >>
> >> --
> >> Salut!
> >> _______________________________________
> >> Jean-Guy Marcil - Word MVP
> >> jmarcilREMOVE@CAPSsympatico.caTHISTOO
> >> Word MVP site: http://www.word.mvps.org
> >>
> >>
> >>
>