Existe uma maneira que eu possa dizer ao Word para também salvar uma segunda cópia em um local especificado?
Sim. Você pode modificar o comando FileSave
:
This example takes you through the steps needed to modify the FileSave command.
Press AltF8 .
In the Macros in box, select Word commands.
In the Macro name box, select "FileSave".
In the Macros in box, select a template or document location to store the macro. For example, select "Normal.dot (Global Template)" to create a global macro (this modifies the FileSave command for all documents that use the normal tempate).
Click Create.
The FileSave macro appears as shown below.
Sub FileSave() ' ' FileSave Macro ' Saves the active document or template ' ActiveDocument.Save End Sub
You can add additional instructions or remove the existing
ActiveDocument.Save
instruction. Now every time theFileSave
command runs, yourFileSave
macro runs instead of the Word command. To restore the originalFileSave
functionality, you need to rename or delete yourFileSave
macro.