码迷,mamicode.com
首页 > 其他好文 > 详细

VB 替换word文档中页眉页脚的文字

时间:2019-10-22 18:27:17      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:pen   dom   create   find   book   content   col   内容   nbsp   

查找资料,替换成功的只有替换页面内容的文字

Sub docs()Dim wordapp
  Set wordapp = CreateObject("Word.Application")
    With wordapp
        .documents.Open (ThisWorkbook.Path & "test.docx")
        .Visible = True
        .activedocument.content.Find.Execute FindText:=text1, ReplaceWith:=text2, Replace:=2
        .documents.Close
    End With
  wordapp.Quit
  Set wordapp = Nothing
End Sub

加上写C#用过DOM API 测试成功

Sub docs()
Dim wordapp
  Set wordapp = CreateObject("Word.Application")
    With wordapp
        .documents.Open (ThisWorkbook.Path & "test.docx")
        .Visible = True
        .ActiveWindow.ActivePane.View.SeekView = 9
        .Selection.Find.Execute FindText:="visit_name", ReplaceWith:=Sheet1.Cells(1, i).Value, Replace:=2
        .ActiveWindow.ActivePane.View.SeekView = 0
        .documents.Close
    End With
  wordapp.Quit
  Set wordapp = Nothing
End Sub  

 

VB 替换word文档中页眉页脚的文字

标签:pen   dom   create   find   book   content   col   内容   nbsp   

原文地址:https://www.cnblogs.com/rn-05181226-rw/p/11721252.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!