WD97: How to Set the Default File Path Using VBA

ID: Q193146

The information in this article applies to:

SUMMARY

This article describes how to use Microsoft Visual Basic for Applications to set the default file path that Microsoft Word uses in the Open, Save, and Save As dialog boxes.

MORE INFORMATION

Microsoft provides programming examples for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This article assumes that you are familiar with the programming language being demonstrated and the tools used to create and debug procedures. Microsoft Support professionals can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific needs. If you have limited programming experience, you may want to contact the Microsoft fee-based consulting line at (800) 936-5200. For more information about the support options available from Microsoft, please see the following page on the World Wide Web:

   http://www.microsoft.com/support/supportnet/refguide/ 

By default, Word 97 uses the default file path set on the File Locations tab (on the Tools menu, click Options) when first using the Open and Save or Save As dialog boxes.

The following sample macro changes the current directory to "C:\MyFolder" and sets that directory as the default.

  Sub ChangeFileOpenPath()
      ChangeFileOpenDirectory "C:\My Folder"
      Options.DefaultFilePath(wdDocumentsPath) = CurDir
      With Dialogs(wdDialogFileOpen)
      .Show
      End With
   End Sub

NOTE: You can omit the lines from "With Dialogs" through "End With" if you do not want to display the Open dialog box.

Additional query words: wordcon vba path name pathname folder

Keywords          : kbdta kbdtacode 
Platform          : WINDOWS
Issue type        : kbhowto

Last Reviewed: May 17, 1999