Hyperlink problems-I am clueless

G

Guest

Hello,
I'm making a hyperlink field to pictures in another folder. I'm working on
the db located on the server. When my co-worker opens the db at his
location, the link works fine. When I open the db at my location & try to
use the link, the link opens the program that opens the picture, but the
picture never opens. Can someone please clue me in as to what I'm doing wrong?
Thanks!
 
A

Arvin Meyer [MVP]

Probably don't have the same drive mappings. Try using a text field to store
a UNC path to the location. Then you can use the Picture property in an
image control to open the image without wasting the overhead of a hyperlink.
You can even use the form's Current event to open it automatically

Sub Form_Current()
Me.ImageCtrl.Picture = \\ServerName\ShareName
End Sub
--
Arvin Meyer, MCP, MVP
Microsoft Access
http://www.datastrat.com
http://www.mvps.org/access
http://www.accessmvp.com
 
G

Guest

Arvin,
That sounds absolutely correct. The drive on my 'puter is not the same as it
is on the server for folks on base.
However, I'm trying to create the link directly into the table, not using a
form.
But, if I get our lan guru to map me the same as they have it on base, I
should be ok, right?
Thanks, again!
 
G

Guest

Arvin,
Sorry for the late reply, I was gone all weekend. I printed out the info
that you shared with me & am passing it on to the guy who has the permissions
to make those changes. Thanks for your help. Your answer sound exactly like
what the problem could be.
 

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