Force Save Folder Location on Network

C

corey

I have a code that prompts a user to save a file to a Network Location.
Is there a way to ONLY allow a Specified Folder to on the Network to be the
location the file can be saved?

Or at least the User is given that folder option 1st?

Preferably ONLY folder to save to.

It will be a Print to PDF.Save File location line of code.

Corey.....
 
B

Barb Reinhardt

Without completely forcing a save of the file in your code, I don't believe
you can force a specific location for the save, they can always change it.

If you want to give them the option to save in a specific location, add this
line

ChDir ("C:\Documents and Settings\barbara.reinhardt\Desktop\Temp")

(change to suit.)
 
C

corey

Thanks
Barb Reinhardt said:
Without completely forcing a save of the file in your code, I don't
believe
you can force a specific location for the save, they can always change it.

If you want to give them the option to save in a specific location, add
this
line

ChDir ("C:\Documents and Settings\barbara.reinhardt\Desktop\Temp")

(change to suit.)
 

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