This code was written in Word 2007.
With Selection.Tables(1)
If .Style <> "Table Grid" Then
.Style = "Table Grid"
End If
.ApplyStyleHeadingRows = True
.ApplyStyleLastRow = False
.ApplyStyleFirstColumn = True
.ApplyStyleLastColumn = False
.ApplyStyleRowBands = True
.ApplyStyleColumnBands = False
End With
The client are using Word 2003 and there was an incompatibility issue. Saying:
Are there any ways to make the code compatible in Word 2003.
that's a backwards compatibility issue - applystylerowbands was not available in Office 2003.