Hi all

I give up! How do I set a picture to go behind text using VB? It doesnâ??t
seem to be one of the WrapFormat.Type constants. Z-Order doesnâ??t seem to work
either.

Many thanks

David

Re: Using VB to place pictures behind text by Tony

Tony
Thu Jan 19 06:23:03 CST 2006

If the picture is in line with the text it is an "InlineShape" - if ithas
any other type of wrapping, it is a Shape. It sounds like you have an
inlineshape, so you need to convert it ...

[YourPicture].ConvertToShape

You should then be able to use WrapFormat, etc.

--
Enjoy,
Tony


"David Cleave" <DavidCleave@discussions.microsoft.com> wrote in message
news:F5F66EA1-10A7-4174-98AD-74C484FFB1D5@microsoft.com...
> Hi all
>
> I give up! How do I set a picture to go behind text using VB? It doesn't
> seem to be one of the WrapFormat.Type constants. Z-Order doesn't seem to
work
> either.
>
> Many thanks
>
> David



Re: Using VB to place pictures behind text by DavidCleave

DavidCleave
Thu Jan 19 06:39:03 CST 2006

Hi Tony

Thank you for your reply. Currently the picture is sitting on top of the
text, so it is not inline. I just need to be able to set it behind the text!

Any tips?

Cheers

David

"Tony Jollans" wrote:

> If the picture is in line with the text it is an "InlineShape" - if ithas
> any other type of wrapping, it is a Shape. It sounds like you have an
> inlineshape, so you need to convert it ...
>
> [YourPicture].ConvertToShape
>
> You should then be able to use WrapFormat, etc.
>
> --
> Enjoy,
> Tony
>
>
> "David Cleave" <DavidCleave@discussions.microsoft.com> wrote in message
> news:F5F66EA1-10A7-4174-98AD-74C484FFB1D5@microsoft.com...
> > Hi all
> >
> > I give up! How do I set a picture to go behind text using VB? It doesn't
> > seem to be one of the WrapFormat.Type constants. Z-Order doesn't seem to
> work
> > either.
> >
> > Many thanks
> >
> > David
>
>
>

Re: Using VB to place pictures behind text by Tony

Tony
Thu Jan 19 07:08:58 CST 2006

And

[Shape].ZOrder msoSendBehindText

doesn't work?

--
Enjoy,
Tony


"David Cleave" <DavidCleave@discussions.microsoft.com> wrote in message
news:DACCD036-1BAB-4343-840A-999740BEDE35@microsoft.com...
> Hi Tony
>
> Thank you for your reply. Currently the picture is sitting on top of the
> text, so it is not inline. I just need to be able to set it behind the
text!
>
> Any tips?
>
> Cheers
>
> David
>
> "Tony Jollans" wrote:
>
> > If the picture is in line with the text it is an "InlineShape" - if
ithas
> > any other type of wrapping, it is a Shape. It sounds like you have an
> > inlineshape, so you need to convert it ...
> >
> > [YourPicture].ConvertToShape
> >
> > You should then be able to use WrapFormat, etc.
> >
> > --
> > Enjoy,
> > Tony
> >
> >
> > "David Cleave" <DavidCleave@discussions.microsoft.com> wrote in message
> > news:F5F66EA1-10A7-4174-98AD-74C484FFB1D5@microsoft.com...
> > > Hi all
> > >
> > > I give up! How do I set a picture to go behind text using VB? It
doesn't
> > > seem to be one of the WrapFormat.Type constants. Z-Order doesn't seem
to
> > work
> > > either.
> > >
> > > Many thanks
> > >
> > > David
> >
> >
> >



Re: Using VB to place pictures behind text by DavidCleave

DavidCleave
Thu Jan 19 07:25:03 CST 2006

Tony

That works perfectly! I didn't spot that in the IntelliSense list.

Thank you

David

"Tony Jollans" wrote:

> And
>
> [Shape].ZOrder msoSendBehindText
>
> doesn't work?
>
> --
> Enjoy,
> Tony
>
>
> "David Cleave" <DavidCleave@discussions.microsoft.com> wrote in message
> news:DACCD036-1BAB-4343-840A-999740BEDE35@microsoft.com...
> > Hi Tony
> >
> > Thank you for your reply. Currently the picture is sitting on top of the
> > text, so it is not inline. I just need to be able to set it behind the
> text!
> >
> > Any tips?
> >
> > Cheers
> >
> > David
> >
> > "Tony Jollans" wrote:
> >
> > > If the picture is in line with the text it is an "InlineShape" - if
> ithas
> > > any other type of wrapping, it is a Shape. It sounds like you have an
> > > inlineshape, so you need to convert it ...
> > >
> > > [YourPicture].ConvertToShape
> > >
> > > You should then be able to use WrapFormat, etc.
> > >
> > > --
> > > Enjoy,
> > > Tony
> > >
> > >
> > > "David Cleave" <DavidCleave@discussions.microsoft.com> wrote in message
> > > news:F5F66EA1-10A7-4174-98AD-74C484FFB1D5@microsoft.com...
> > > > Hi all
> > > >
> > > > I give up! How do I set a picture to go behind text using VB? It
> doesn't
> > > > seem to be one of the WrapFormat.Type constants. Z-Order doesn't seem
> to
> > > work
> > > > either.
> > > >
> > > > Many thanks
> > > >
> > > > David
> > >
> > >
> > >
>
>
>

Re: Using VB to place pictures behind text by Tony

Tony
Thu Jan 19 07:43:05 CST 2006

My pleasure!

--
Enjoy,
Tony


"David Cleave" <DavidCleave@discussions.microsoft.com> wrote in message
news:CF7BFB09-DBD8-4791-933A-4FF0B65BC77D@microsoft.com...
> Tony
>
> That works perfectly! I didn't spot that in the IntelliSense list.
>
> Thank you
>
> David
>
> "Tony Jollans" wrote:
>
> > And
> >
> > [Shape].ZOrder msoSendBehindText
> >
> > doesn't work?
> >
> > --
> > Enjoy,
> > Tony
> >
> >
> > "David Cleave" <DavidCleave@discussions.microsoft.com> wrote in message
> > news:DACCD036-1BAB-4343-840A-999740BEDE35@microsoft.com...
> > > Hi Tony
> > >
> > > Thank you for your reply. Currently the picture is sitting on top of
the
> > > text, so it is not inline. I just need to be able to set it behind the
> > text!
> > >
> > > Any tips?
> > >
> > > Cheers
> > >
> > > David
> > >
> > > "Tony Jollans" wrote:
> > >
> > > > If the picture is in line with the text it is an "InlineShape" - if
> > ithas
> > > > any other type of wrapping, it is a Shape. It sounds like you have
an
> > > > inlineshape, so you need to convert it ...
> > > >
> > > > [YourPicture].ConvertToShape
> > > >
> > > > You should then be able to use WrapFormat, etc.
> > > >
> > > > --
> > > > Enjoy,
> > > > Tony
> > > >
> > > >
> > > > "David Cleave" <DavidCleave@discussions.microsoft.com> wrote in
message
> > > > news:F5F66EA1-10A7-4174-98AD-74C484FFB1D5@microsoft.com...
> > > > > Hi all
> > > > >
> > > > > I give up! How do I set a picture to go behind text using VB? It
> > doesn't
> > > > > seem to be one of the WrapFormat.Type constants. Z-Order doesn't
seem
> > to
> > > > work
> > > > > either.
> > > > >
> > > > > Many thanks
> > > > >
> > > > > David
> > > >
> > > >
> > > >
> >
> >
> >