If you save the following macros (changed to reflect the required paths) in
normal.dot you could create shortcuts to start Word and run one or other of
them which would do what you want, but what are you going to do if Word is
already open?
Sub OpenPath1()
Options.DefaultFilePath(Path:=wdDocumentsPath) = "D:\My Documents\Test\"
End Sub
Sub OpenPath2()
Options.DefaultFilePath(Path:=wdDocumentsPath) = "D:\My Documents\"
End Sub
You could add the macros to buttons on a custom toolbar, but that doesn't
get you any farther than the method provided by Microsoft and suggested by
Terry.
It would be simpler to add the path to the Windows title bar, so you know
where you are working, and for that you need another macro
Sub AutoOpen()
ActiveWindow.Caption = ActiveDocument.FullName
End Sub
See
http://www.gmayor.com/installing_macro.htm
--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>