对下代码每一步都进行解释 Sub MergeDocs() Dim Doc As Document, SrcDoc As Document Dim Sel As Selection Dim fileDlg As FileDialog Dim strFile As String Dim i As Integer Set fileDlg = Application.FileDialog(msoFileDialogFilePicker) fileDlg.AllowMultiSelect = True fileDlg.Title = "Select the Files to Merge" If fileDlg.Show = -1 Then Set Doc = Documents.Add Set Sel = Selection For i = 1 To fileDlg.SelectedItems.Count strFile = fileDlg.SelectedItems(i) Set SrcDoc = Documents.Open(strFile) 'Copy the content of the source document to the end of the destination document SrcDoc.Content.Copy Sel.EndKey Unit:=wdStory Sel.Paste SrcDoc.Close SaveChanges:=False Next i End If End Sub
时间: 2024-02-10 12:33:59 浏览: 153
好的,下面是对每一步的解释:
1. `Dim Doc As Document, SrcDoc As Document Dim Sel As Selection Dim fileDlg As FileDialog Dim strFile As String Dim i As Integer`
这段代码定义了一些变量,`Doc` 和 `SrcDoc` 是 Word 文档对象,`Sel` 是文本选定对象,`fileDlg` 是文件对话框对象,`strFile` 是文件路径,`i` 是循环计数器。
2. `Set fileDlg = Application.FileDialog(msoFileDialogFilePicker) fileDlg.AllowMultiSelect = True fileDlg.Title = "Select the Files to Merge"`
这段代码创建了一个文件对话框对象,并设置了它的一些属性,比如允许选择多个文件,对话框标题为 "Select the Files to Merge"。
3. `If fileDlg.Show = -1 Then`
这段代码判断用户是否点击了文件对话框的 "打开" 按钮,如果是,则继续执行宏。
4. `Set Doc = Documents.Add Set Sel = Selection`
这段代码创建一个新的 Word 文档对象,并将文本选定对象设置为新文档的选定部分。
5. `For i = 1 To fileDlg.SelectedItems.Count strFile = fileDlg.SelectedItems(i)`
这段代码循环处理每个选择的文件,`strFile` 变量存储当前处理的文件路径。
6. `Set SrcDoc = Documents.Open(strFile)`
这段代码打开当前处理的文件,并将其存储到 `SrcDoc` 变量中。
7. `SrcDoc.Content.Copy Sel.EndKey Unit:=wdStory Sel.Paste`
这段代码将当前处理的文件的全部内容复制到剪贴板,然后将其粘贴到新文档的末尾。
8. `SrcDoc.Close SaveChanges:=False`
这段代码关闭当前处理的文件,不保存任何更改。
9. `Next i`
这段代码结束当前循环。
10. `End If`
这段代码结束条件语句,即如果用户没有选择文件或者选择了取消,则不执行宏。
阅读全文