Hi all,In my application i have a text box which is populated with a weblink, I have found some code which "should" allow me to click on it and open the link, but I get the following error"438: Object doesn't support this property of method".Is it not possible to use hyperlinks?This is the code i am using for that text box.Private Sub txtDeveloperWebsite_MouseDown(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single) Dim strDevWebsite As String On Error GoTo Error_OLEUnbound1 ' Set reference to hyperlink address. strDevWebsite = txtDeveloperWebsite.Text ' Follow hyperlink address. Application.FollowHyperlink strDevWebsite, , True Exit_OLEUnbound1: Exit Sub Error_OLEUnbound1: MsgBox Err & ": " & Err.Description Resume Exit_OLEUnbound1 End Sub
I'm using ArcGIS 9.3.1Thanks