Hyperlink

K

K

Good day,

I have a subform that contains a field called DocumentDesc adjacent to it is
field called location which contains the hyperlink to the document however it
is hidden. How do I get the field that is not hidden to run the link and open
the document link on Double click?

Any help would be greatly appreciated.

Example

DocumentDesc Location
MWI Blade Managment "Hyperlink to document"
 
J

John Nurick

Use something like this in the DoubleClick event procedure:

Application.FollowHyperlink Me.Location
 
Top