首 页 行业热点 新车 试驾评测 养车用车 车型库

怎样同时批量修改多个word文档

发布网友 发布时间:2022-04-22 00:39

我来回答

2个回答

热心网友 时间:2024-01-28 04:54

【注意】:MS Office2003中测试通过。2007可能无法运行。
一、前期准备

  下面是具体操作步骤。

  A,首先将需要批量替换的多个Word文档放在同一文件夹下面。

  B,新建一空白Word文档,右击空白工具栏,单击“控件工具箱”,就可以看到屏幕上调出的控件工具箱。

  C,在控件工具箱上单击“命令按钮”,文档中就放置了一个按钮了。

  D,双击该按钮,进入VB代码编写模式,将以下代码复制进去。

  二、命令按钮的代码

  Private Sub CommandButton1_Click()
  Application.ScreenUpdating = False
  Dim myPas As String, myPath As String, i As Integer, myDoc As Document
  With Application.FileDialog(msoFileDialogFolderPicker)
   .Title = "选择目标文件夹"
   If .Show = -1 Then
   myPath = .SelectedItems(1)
   Else
   Exit Sub
   End If
  End With
  myPas = InputBox("请输入打开密码,如果没有就不填:")
  With Application.FileSearch
   .LookIn = myPath
   .FileType = msoFileTypeWordDocuments
   If .Execute > 0 Then
   For i = 1 To .FoundFiles.Count
   Set myDoc = Documents.Open(FileName:=.FoundFiles(i), Passworddocument:=myPas)
   Selection.Find.ClearFormatting
   Selection.Find.Replacement.ClearFormatting
   With Selection.Find
   .Text = "原文字"
   .Replacement.Text = "新文字"
   .Forward = True
   .Wrap = wdFindAsk
   .Format = False
   .MatchCase = False
   .MatchWholeWord = False
   .MatchByte = True
   .MatchWildcards = False
   .MatchSoundsLike = False
   .MatchAllWordForms = False
   End With
   Selection.Find.Execute Replace:=wdReplaceAll
   myDoc.Save
   myDoc.Close

   Set myDoc = Nothing
   Next
   End If
  End With
   Application.ScreenUpdating = True
  End Sub

  保存上面代码,退出VB编辑模式,返回Word文档界面。

  单击选中该按钮,再单击控件工具箱的第一个按钮“退出设计模式”。

  最后,就可以进行测试:再次点击按钮,就会发现该文件夹下面的所有WORD文档中的"原文字"被替换为"新文字"了。

热心网友 时间:2024-01-28 04:55

使用 文件 批量处 理百宝 箱V10.0中相应的批量处理功能,强大丰富实用!

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com