Floating Picture

K

Karen

I want to add a picture to a document that floats and then I'll figure out a
way to place it correctly. I think I need to use Options.PictureWrapType =
wdWrapMergeFront but can't seem to figure out where in my code to place it
so it has the desired affect. This is extremely simple macro just to insert
a pix. Can anyone tell me where to add Options.PictureWrapType -
wdWrapMergeFront?




Options.PictureWrapType = wdWrapMergeFront
Selection.InlineShapes.AddPicture FileName:= _
"F:\Documents and Settings\Karen\My Documents\topTall2.bmp" _
, LinkToFile:=False, SaveWithDocument:=True
Selection.Extend
Selection.MoveLeft Unit:=wdCharacter, Count:=1
Options.PictureWrapType = wdWrapMergeFront


The above code has no effect on the picture, I also tried to code at the
start of the macro--no difference
 
W

Word Heretic

G'day "Karen" <[email protected]>,

Sweetie - InlineShapes is for NON FLOATING INLINE SHAPES :) The
Shapes collection however....


Steve Hudson - Word Heretic
Want a hyperlinked index? S/W R&D? See WordHeretic.com

steve from wordheretic.com (Email replies require payment)


Karen reckoned:
 

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