Hyperlink Label

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a FORM with a LABEL whose hyperlink value I would like to define in a
TEXT FIELD on the same FORM. I would like the user to click on the LABEL
instead of the TEXT FIELD to active the target of the link.

I'm convinced that this will have to be done programmatically, can someone
please provide a solution?
 
If I understand your question you what a label to be a hyperlink.

To do that create a Label> right click on the Label>Properties>type in the
web address in the Hyperlink Address Field.
 
No thats not it but after decades of intense slave labor I finanlly figured
it out.

"
Private Sub lblWWW_Click()
Me.lblwww.HyperlinkAddress = txtWWW
End Sub
"
Where lblwww is the name of the label I wish the user to click on and txtWW
is the field to type in the address. This method is cool cuz I hate when I
click on a hyperlink to edit it just to have it open.


Private Sub
 

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

Back
Top