Syntax
ToolsMergeRevisions .Name = text
Remarks
Merges the revision marks from the active document into the specified document, which Word opens if it is not open already. If the active document minus revision marks is not equivalent to the specified document minus revision marks, an error occurs. You can use a series of FileOpen instructions followed by ToolsMergeRevisions instructions to collect revision marks from multiple review copies into one document.
Argument | Explanation | |
.Name | The path and filename of the document from which you want to merge revisions |
Example
This example opens REVISE1.DOC, merges revision marks into ORIGINAL.DOC, and then performs the same action with REVISE2.DOC:
FileOpen .Name = "REVISE1.DOC" ToolsMergeRevisions .Name = "ORIGINAL.DOC" FileOpen .Name = "REVISE2.DOC" ToolsMergeRevisions .Name = "ORIGINAL.DOC"
See Also
ToolsCompareVersions, ToolsOptionsRevisions, ToolsReviewRevisions, ToolsRevisions