URL in form

  • Thread starter Thread starter Henry
  • Start date Start date
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
 
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
 
Back
Top