![]() |
|
,
0 Comments
)
|
| Subject:
version control defaults in MS Word 2000
Category: Computers > Software Asked by: beatle-ga List Price: $2.00 |
Posted:
09 May 2003 14:11 PDT
Expires: 08 Jun 2003 14:11 PDT Question ID: 201736 |
In Microsoft Word 2000, if you go to the menu File->Versions, you can check a box so that, every time you close the document, it automatically saves a version. Is there any way to make it so, by default, this box is checked when I open a new document, so that I don't need to remember to turn version control on every time I create a new document? |
|
| Subject:
Re: version control defaults in MS Word 2000
Answered By: spot_tippybuttons-ga on 12 May 2003 19:49 PDT Rated: ![]() |
You can turn on version control in new Word documents by default, but
you will need to use a macro to do so.
From the Tools menu, select Macros->Macro to open the macros control
panel. Make sure "Normal.dot (global template)" is selected from the
"Macros In:" pull-down. Click the Create button to create a new macro.
You will need to create two macros with special names so that they run
automatically: AutoNew and AutoExec.
Paste the following code when you create your macros...
For the AutoExec macro:
Sub AutoExec()
If Documents.Count < 1 Then
Application.Documents.Add
End If
ActiveDocument.Versions.AutoVersion = wdAutoVersionOnClose
End Sub
For the AutoNew macro:
Sub AutoNew()
ActiveDocument.Versions.AutoVersion = wdAutoVersionOnClose
End Sub
Click the picture of a disk on the toolbar in the macro editor to save
the macros.
The "Automatically Save a Version on Close" checkbox should now be
checked by default when you create a new document.
Have a great day!
-Spot | |
| |
| |
| |
beatle-ga
rated this answer:
Brilliant! |
|
| There are no comments at this time. |
If you feel that you have found inappropriate content, please let us know by emailing us at answers-support@google.com with the question ID listed above. Thank you. |
| Search Google Answers for |
| Google Home - Answers FAQ - Terms of Service - Privacy Policy |