Any help would be appreciated. I have little knowledge of VBA.
Mark
If you want to change it programmatically for each session, you
can use code like:
Options.DefaultFilePath(Path:=wdDocumentsPath) = "c:\LegalForms\Data"
-- Mark Tangard <mtan...@pacbell.net> ----------------------------
----------- "Life is nothing if you aren't obsessed." --John Waters
-------------------------------------------------------------------
> I am using Dialogs(wdDialogFileSaveAs).Show in a macro and would like to
> prefill the SaveIn directory in the dialog box to be something other the
My
> Documents. I have tried ChangeFileOpenDirectory and ChDir, but neither
> seems to cause the directory that I want (c:\LegalForms\Data) to
> consistently appear.
With Dialogs(wdDialogFileSaveAs)
.Name = "C:\LegalForms\Data\"
.Show
End With
--
Hope this helps.
ibby
Please post replies or follow-ups to the **newsgroup** so that participants
may benefit or contribute.
> Ibby - Many thanks, it was just what I needed. Where is this stuff
> documented?
In the newsgroups ;-)
--