G Guest Jun 29, 2005 #1 Anyone know of a quick method to force all the pictures in a doc to be inline rather than floating?
J Jay Freedman Jun 29, 2005 #2 andy26 said: Anyone know of a quick method to force all the pictures in a doc to be inline rather than floating? Click to expand... 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.
andy26 said: Anyone know of a quick method to force all the pictures in a doc to be inline rather than floating? Click to expand... 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.