Dynamic hyperlink word document to a filepath directory textbox in access

ccondran08

Registered User.
Local time
Today, 20:47
Joined
Feb 27, 2014
Messages
58
Hi, just wondering if anyone has any info or thoughts on being able to link a word document hyperlink to a textbox value on an access form. I have created the following cutom help menu below but the database will be sent to the contractors office and I want to be able to dynamically link the word documents filepath to the value of a textbox on a form ??

http://www.datapigtechnologies.com/flashfiles/customhelp.html
 
If I understand your post, you're trying to associate a hyperlink address to a textbox control.

You may want to look into the Textbox.Tag property. The Tag Property allows you to store a value that can be later retrieved.

For Example, in your Form's Load() procedure, you can do something like this:
Code:
Text1.Tag = "http://domainexample.com/help/HelpTopic1.html"
Then maybe you have a "Get Help" button on your form, and you can add something like this:

Code:
If ActiveControl.Tag <> "" then
     FollowHyperlink ActiveControl.Tag
End If
 

Users who are viewing this thread

Back
Top Bottom