Save As

M

Mj

When recieving word doc by email, when going to save as
it points to a temp loaction, is there any way of
changing this so that when i go to save as it points to a
folder at least some where near my drive

thanks
 
G

Greg

Mj,

That bugs me too and I don't like Word suggesting a
filename either. I use a macro to replace the builtin
Word FileSaveAs command:

Sub FileSaveAs()
Dim FileName As String
'change the next next line to specify preferred directory
ChangeFileOpenDirectory "\\spp1\spp50$\Word Documents\"
FileName = ""
Set UserSaveDialog = Dialogs(wdDialogFileSaveAs)
UserSaveDialog.Name = FileName
UserSaveDialog.Display

End Sub
 
G

Guest

It bothers me too, now that I use a PC. In the past I
used a MAC that would remember the last window you saved
to and would always go back to it. So if you created a
folder that you liked to save to, it would always save
there and you didn't have to worry about, "Where did I
save that document?"
 

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

Top