Hi Ralph,
theoretically, no, you end up with 2 files,
that are most likely equal according to their content,
but are not identical. Identical files would be
such that where saved e.g. under only differently mapped
locations.
Though, saving a file with a special name,
first here, then there, should not be a problem.
Sub FileSave()
With ActiveDocument
If .FullName = "c:\test\test.doc" Or _
.FullName = "d:\test\test.doc" Then
.SaveAs "d:\test\test.doc"
.SaveAs "c:\test\test.doc"
Else
.Save
End If
End With
End Sub
That ensures, that a user is always working on
"c:\test\test.doc", after saving it for the first time.
If it has to be, I'd set the saved-property to false
via autoopen and call filesave from there. Which may rise
other problems... Do you really want to know about them all?
Greetings from Bavaria, Germany
Helmut Weber, MVP
"red.sys" & chr(64) & "t-online.de"
Word XP, Win 98
http://word.mvps.org/