Space in Address Field

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

Guest

I have a really simple question. I'm trying to put a hyperlink in Microsoft
Outlook to open an Access file, but the file is located in a folder that has
a space in the name. If I put an underline for the space, I get an error
message. Right now my web page address is listed as:
file:///Z:/JobStatus_Update/JobStatus.mdb

Of course the simple route would be to delete the space in the folder name
on Public (which works), but I would rather not.

Can someone tell me how to list the address leaving the space in the name?

Thanks.
Louise
 
Hi Louise,

You can use %20 to indicate a space in a URL, e.g.

file:///Z:/JobStatus%20Update/JobStatus.mdb
 
Back
Top