The IsHyperlink is ONLY there to display the hand when you put your cursor
over it. You need to add code in the click event of the text box to actually
open the hyperlink.
FollowHyperLink Me.YourTextBoxNameHere

Signature
Bob Larson
Access World Forums Super Moderator
Utter Access VIP
Tutorials at http://www.btabdevelopment.com
__________________________________
If my post was helpful to you, please rate the post.
> I'm having a problem with a text box in a form whose Control Source is a
> table field that has a Hyperlink data type. The Hyperlink addresses are
[quoted text clipped - 15 lines]
>
> Paul
Paul Ponzelli - 05 Nov 2007 07:04 GMT
FollowHyperLink works great.
Immediately after the FollowHyperLink line in the control's Enter event, I
used Me!FormName!ControlName.SetFocus to move the cursor to another control
to replace the hyperlink address in the control display with the hyperlink
label.
Thanks for your help with this, Bob.
Paul
> The IsHyperlink is ONLY there to display the hand when you put your cursor
> over it. You need to add code in the click event of the text box to
[quoted text clipped - 27 lines]
>>
>> Paul