The best I can come up with is a macro which you need to save in the
document's template (or in normal.dot). Add the macro to a toolbar button.
The first time you run the macro it saves the document with the filename
"My File March 24, 2005 001.doc" (date is the current date) in the folder
you designate where indicated. You can change "My File" for something more
meaningful also where indicated. The macro also creates a file
'settings.txt' in the root of the C: drive.
Next time the macro is run, the end number is incremented and the date
changed according to the current date. Thus you always know which is the
most recent file and on which date it was saved from the filename.
See
http://www.gmayor.com/installing_macro.htm
Sub SaveNumberedVersion()
Dim strPath, strFile As String
strPath = "D:\My Documents\Test\" 'set path
strFile = "My File " 'set filename
Order = System.PrivateProfileString("C:\Settings.Txt", _
"MacroSettings", "Order")
If Order = "" Then
Order = 1
Else
Order = Order + 1
End If
System.PrivateProfileString("C:\Settings.txt", "MacroSettings", _
"Order") = Order
ActiveDocument.SaveAs FileName:=strPath & strFile & _
Format((Date), "MMMM dd, yyyy ") & Format(Order, "00#")
End Sub
--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
My web site
www.gmayor.com
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>