Hi,
I have an "Add Graphic" form which lets the user find the image they need using a hyperlink. I also want the hyperlinked image to be displayed in an Image Box. I use the following code:
This code is put in the forms OnCurrent Event.
The problem is that when the user uses the hyperlink, the text that shows up is like: "..\..\..\Image\Image1.jpg". The image's actual address is : "C:\Image\Image1.jpg".
How can the hyperlink show: "C:\Image\Image1.jpg" instead of "..\..\..\Image\Image1.jpg"?
Thanks, Alex
I have an "Add Graphic" form which lets the user find the image they need using a hyperlink. I also want the hyperlinked image to be displayed in an Image Box. I use the following code:
Code:
Me![Image].Picture=Me![Hyperlink]
This code is put in the forms OnCurrent Event.
The problem is that when the user uses the hyperlink, the text that shows up is like: "..\..\..\Image\Image1.jpg". The image's actual address is : "C:\Image\Image1.jpg".
How can the hyperlink show: "C:\Image\Image1.jpg" instead of "..\..\..\Image\Image1.jpg"?
Thanks, Alex