> I'm attempting to create a link to an internal location that has
> spaces in the address.
>
> \\servername\dog food\bones
>
> Example, I use file:\\servername\dog food\bones
>
> but only get a link up through "dog", leaving "food\bones" unlinked.
>
> How do i write this so that the entire content of the address is
> linked correctly?
Try: file:\\servername\dog%20food\bones
Essentially, replaces spaces with %20 for each space.
Bret