Hyperlink in Datasheet View?

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
 
G

Guest

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.
 

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

Top