Hyperlink Label

P

Pitt

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?
 
C

Crazyhorse

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.
 
P

Pitt

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
 
Top