View Single Post
 
Old 12-13-2011, 11:30 PM
macropod's Avatar
macropod macropod is offline Windows 7 64bit Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 22,343
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

Hi giozane,

The text with the white background in the cells has had a white background applied, whilst the other text has no background. The easiest way to fix many textboxes is with a macro:
Code:
Sub FixTextBoxText()
Dim Shp As Shape
For Each Shp In ActiveDocument.Shapes
  If Shp.Type = msoTextBox Then
    Shp.TextFrame.TextRange.Font.Shading.BackgroundPatternColorIndex = 0
  End If
Next
End Sub
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote