URL in form

H

Henry

I would like a text box to display a URL that when clicked opens a browser
window with that web page.
Presently when I click the URL it simply displays the MSAccess Web toolbar.

The URL is read from the db then displayed in a etxt box that has it's
IsHyperlink property set to true.

Thanks

Henry
 
B

Birgit

Henry,

I'm not sure about the text box, but I do that with URL's
displayed in a text box. You can probably convert the
logic...

Private Sub ListAccess_Click()

Dim URL As String
URL = ListAccess.Column(2)

Application.FollowHyperlink (URL)

End Sub

Thanks,
Birgit
 

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