0

此代码是用 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

客户端使用的是 Word 2003,但存在不兼容问题。说: 在此处输入图像描述

有什么方法可以使代码在 Word 2003 中兼容。

4

1 回答 1

2

这是一个向后兼容性问题 - Office 2003 中不提供 applystylerowbands。

于 2013-05-31T22:10:03.457 回答