Hyperlink in Datasheet View?

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

Guest

I have a tblSAR with these fields:
SAR_Link text
SAR_ID text
SAR_Title text
SAR_State text
SAR_Element text

I want to see these on a form in datasheet view. The SAR_Link is the text
address of a URL (not an actual hyperlik). In datasheet view, I can click on
the SAR_Link and it will take me to the URL because of this code:
Private Sub txtSAR_Link_Click()
Application.FollowHyperlink Me.txtSAR_Link & "#", , True
End Sub

What I want is for the SAR_Link to "look" like it should be clicked. My
first choice would be to make it a button, but I can't figure out how to do
that in datasheet view. My second choice would be to turn the text blue and
underlinke it. I set these properties in the txtSAR_Link field, but they are
not showing up in Datasheet view.

Can anyone help with this?
Thank you, Judy
 
I was able to accomplish what I wanted in a Tabular form, but I'm still
curious if anyone can do the same thing in Datasheet View.
 
Back
Top