View Single Post
  #2   Report Post  
Jay Freedman
 
Posts: n/a
Default

andy26 wrote:
Anyone know of a quick method to force all the pictures in a doc to
be inline rather than floating?


Use a macro:

Sub MakeInline()
Dim shp As Shape
For Each shp In ActiveDocument.Shapes
On Error Resume Next
shp.ConvertToInlineShape
Next shp
End Sub

See http://www.gmayor.com/installing_macro.htm if necessary.

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org