rt.
不要说宏录制的方法啊,word的操作根本就没有按页选择的功能。

解决方案 »

  1.   

    用宏定位第2页
    Selection.GoTo What:=wdGoToPage, Which:=wdGoToNext, Name:="2"
        Selection.Find.ClearFormatting
        With Selection.Find
            .Text = ""
            .Replacement.Text = ""
            .Forward = True
            .Wrap = wdFindContinue
            .Format = False
            .MatchCase = False
            .MatchWholeWord = False
            .MatchByte = True
            .MatchWildcards = False
            .MatchSoundsLike = False
            .MatchAllWordForms = False
        End With