WORKAROUND
To work around this problem, use one of the following methods.
Method 1: Change the Wrapping Style
After you have pasted as a
Picture or a
Microsoft Word Document Object, change the wrapping style to
In line with text using the following steps:
- Select the object you pasted.
- On the Format menu, click Object.
- On the Layout tab, under Wrapping style, select In line with text.
NOTE: If you click the Advanced button before you click In line with text, Top and bottom (on the Text Wrapping tab) is automatically selected when you paste your object. - Click OK.
Method 2: Use a Macro
Microsoft provides programming examples for illustration only, without warranty either expressed or implied. This includes, but is not limited to, the implied warranties of merchantability or fitness for a particular purpose. This article assumes that you are familiar with the programming language that is being demonstrated and with the tools that are used to create and to debug procedures. Microsoft support engineers can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific requirements.
For more information about how to use the sample code in this article, click
the article number below to view the article in the Microsoft Knowledge
Base:
212536
OFF2000: How to Run Sample Code from Knowledge Base Articles
Use one of the following macro examples.
Macro 1
NOTE: Before running the following macro example, copy or cut the picture or object that you want to the Windows Clipboard.
Sub PasteInline()
' Paste the contents of the Windows Clipboard as inline with text.
Dim myrange As Range
Set myrange = Selection.Range
With Selection
.PasteSpecial Link:=False, DataType:=wdPasteEnhancedMetafile, DisplayAsIcon:=False
.ShapeRange.ConvertToInlineShape
End With
Selection.MoveRight Unit:=wdCharacter, Count:=1, Extend:=wdExtend
Selection.Cut
myrange.Select
Selection.Paste
End Sub
-or-
Macro 2
Refer to the macros in the following Knowledge Base article:
209944 WD2000: Cannot Insert Picture (Object) As "Float Over Text"