Display Hyperlink on Form

noob23

Registered User.
Local time
Today, 01:58
Joined
Apr 21, 2003
Messages
17
I have an Access form and I want to display the Hyperlink from a certain field ON the form itelf instead of opening it in a new IE window.

My Hyperlink field is actually Pictures. I am hyperlinking to pictures on a local drive. WHen a user clicks on the hyperlink in the field, it automatically opens the picture in IE. Is there a way to have the picture just open on the form itself? Or into a new form?

Thanks.
 
what about using a picture control on your form
instead of using a hyperlink use the on click event for the
button
Me.NameOfyourPictureControl.Picture = full path name of the picture
eg
me.Mypicturecontrol.picture=C:\My Documents\bitmap doors\Stock Door0022.bmp

or if you have a lot of pictures store their path names in a table
and let the the user select a picture from a combo box on your
form,and use the combobox after update event
Me.NameOfyourPictureControl.Picture = comboboxname


hope this helps
 

Users who are viewing this thread

Back
Top Bottom