changing the default folder for file| open

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

In Word 2003, is there a way to always default to the file | store folder?
I.E., when you do a file | open, it doesn't go to the last used folder? I
have a user who would like it to always go back to the original file | open
folder. Thanks in advance.
 
Hi Judy,

A few things you might be able to do ...

Rather than set the default, you could put the user's preferred folder into
the File>Open dialog's "My Places" bar (the bar at the extreme left of the
dialog). The user would have to click it each time but that might be good
enough.

You can do this as follows:

Click File>Open.
Navigate to the folder you want.
In the dialog, click the dialog's Tools menu.
Select 'Add to "My Places"'.
You may have to use the "My Places" bar's little up or down arrows to locate
the folder if it is not showing in the bar.
If the folder icon is in an unsuitable position in the bar, you can
right-click it and move it up or down one or more places.

An alternative might be to create a template and create a macro in it called
FileOpen that in effect intercepts Word's built-in FileOpen command. Then
place the template in the user's Word startup folder (the one shown in
Tools>Options/File locations>Startup).

One version of the macro is shown below. You would need to change the value
of the PreferredFolder constant. (Don't omit the final backslash.)

Sub FileOpen()
Const PreferredFolder As String = "c:\test\"

With Dialogs(wdDialogFileOpen)
.Name = PreferredFolder
.Show
End With
End Sub

A third approach might be to create a similar macro called something other
than FileOpen in a template stored in the user's Word startup folder, and
then add a toolbar button to run it.

Regards.

Ed
 
thank you very much.
--
Judy


Ed said:
Hi Judy,

A few things you might be able to do ...

Rather than set the default, you could put the user's preferred folder into
the File>Open dialog's "My Places" bar (the bar at the extreme left of the
dialog). The user would have to click it each time but that might be good
enough.

You can do this as follows:

Click File>Open.
Navigate to the folder you want.
In the dialog, click the dialog's Tools menu.
Select 'Add to "My Places"'.
You may have to use the "My Places" bar's little up or down arrows to locate
the folder if it is not showing in the bar.
If the folder icon is in an unsuitable position in the bar, you can
right-click it and move it up or down one or more places.

An alternative might be to create a template and create a macro in it called
FileOpen that in effect intercepts Word's built-in FileOpen command. Then
place the template in the user's Word startup folder (the one shown in
Tools>Options/File locations>Startup).

One version of the macro is shown below. You would need to change the value
of the PreferredFolder constant. (Don't omit the final backslash.)

Sub FileOpen()
Const PreferredFolder As String = "c:\test\"

With Dialogs(wdDialogFileOpen)
.Name = PreferredFolder
.Show
End With
End Sub

A third approach might be to create a similar macro called something other
than FileOpen in a template stored in the user's Word startup folder, and
then add a toolbar button to run it.

Regards.

Ed
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top