bizybeaver
Technical User
I had some trouble with this, but I finally got it to work. Problem I have now is I need to allow the user get select a file, via Insert Picture from File as opposed to me hard coding the path. I'm not sure how to get this in and then perform the formatting steps I need afterwards...
Any help is greatly appreciated!
Set myShape = ActiveDocument.Shapes.AddPicture(FileName:="G:\PDG Stock Binders~New Sprint Nextel\Vertical Market Covers\Business~Professional Services\Business Voice & Data Letter Sized.jpg", LinkToFile:=False, SaveWithDocument:=True, Anchor:=Selection.Range)
'Dialogs(wdDialogInsertPicture).Show
myShape.Select
Selection.ShapeRange.Fill.Visible = msoFalse
Selection.ShapeRange.Fill.Solid
Selection.ShapeRange.Fill.Transparency = 0#
etc... More steps are listed, but redundant for this post.
Any help is greatly appreciated!
Set myShape = ActiveDocument.Shapes.AddPicture(FileName:="G:\PDG Stock Binders~New Sprint Nextel\Vertical Market Covers\Business~Professional Services\Business Voice & Data Letter Sized.jpg", LinkToFile:=False, SaveWithDocument:=True, Anchor:=Selection.Range)
'Dialogs(wdDialogInsertPicture).Show
myShape.Select
Selection.ShapeRange.Fill.Visible = msoFalse
Selection.ShapeRange.Fill.Solid
Selection.ShapeRange.Fill.Transparency = 0#
etc... More steps are listed, but redundant for this post.