View Single Post
 
Old 05-29-2012, 03:55 AM
macropod's Avatar
macropod macropod is offline Windows 7 64bit Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 21,963
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

Your document will require a lot of work to set right. I suggest you hire someone who is skilled in document design to do this correctly. In the meantime, here is a macro you can use to move all the lines that are presently behind the tables to the front, so that you can then select and delete them.
Code:
Sub MoveToFront()
Dim Shp As Shape
For Each Shp In ActiveDocument.Shapes
  If Shp.WrapFormat.Type = wdWrapBehind Then
    Shp.WrapFormat.Type = wdWrapFront
  End If
Next
End Sub
To see how to use the macro, go to: http://www.gmayor.com/installing_macro.htm
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote