<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Unable to use Application.Hyperlink in ArcMap? in ArcObjects SDK Questions</title>
    <link>https://community.esri.com/t5/arcobjects-sdk-questions/unable-to-use-application-hyperlink-in-arcmap/m-p/422572#M11386</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Halil,&lt;BR /&gt;&lt;BR /&gt;Looking at your sample code I believe the sample you have found is specific to MS Access. If you want to open a website using VBA in ArcMap 9.3 use this code instead:&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;Dim iE As Object
Set iE = CreateObject("InternetExplorer.Application")
iE.navigate "&lt;A href="http://www.rivex.co.uk" rel="nofollow noopener noreferrer" target="_blank"&gt;www.rivex.co.uk&lt;/A&gt;"
iE.Visible = True&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;Duncan&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Perfect, thanks Duncan.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 11 Dec 2021 19:05:20 GMT</pubDate>
    <dc:creator>HalilSiddique</dc:creator>
    <dc:date>2021-12-11T19:05:20Z</dc:date>
    <item>
      <title>Unable to use Application.Hyperlink in ArcMap?</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/unable-to-use-application-hyperlink-in-arcmap/m-p/422570#M11384</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi all,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;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&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"438: Object doesn't support this property of method".&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Is it not possible to use hyperlinks?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This is the code i am using for that text box.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;Private Sub txtDeveloperWebsite_MouseDown(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single) &amp;nbsp;&amp;nbsp; Dim strDevWebsite As String &amp;nbsp;&amp;nbsp; On Error GoTo Error_OLEUnbound1 &amp;nbsp;&amp;nbsp; ' Set reference to hyperlink address. &amp;nbsp;&amp;nbsp; strDevWebsite = txtDeveloperWebsite.Text &amp;nbsp;&amp;nbsp; ' Follow hyperlink address. &amp;nbsp;&amp;nbsp; Application.FollowHyperlink strDevWebsite, , True Exit_OLEUnbound1: &amp;nbsp;&amp;nbsp; Exit Sub Error_OLEUnbound1: &amp;nbsp;&amp;nbsp; MsgBox Err &amp;amp; ": " &amp;amp; Err.Description &amp;nbsp;&amp;nbsp; Resume Exit_OLEUnbound1 End Sub&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm using ArcGIS 9.3.1&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Feb 2012 11:02:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/unable-to-use-application-hyperlink-in-arcmap/m-p/422570#M11384</guid>
      <dc:creator>HalilSiddique</dc:creator>
      <dc:date>2012-02-06T11:02:59Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to use Application.Hyperlink in ArcMap?</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/unable-to-use-application-hyperlink-in-arcmap/m-p/422571#M11385</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Halil,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Looking at your sample code I believe the sample you have found is specific to MS Access. If you want to open a website using VBA in ArcMap 9.3 use this code instead:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;Dim iE As Object Set iE = CreateObject("InternetExplorer.Application") iE.navigate "www.rivex.co.uk" iE.Visible = True&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Duncan&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Feb 2012 16:06:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/unable-to-use-application-hyperlink-in-arcmap/m-p/422571#M11385</guid>
      <dc:creator>DuncanHornby</dc:creator>
      <dc:date>2012-02-10T16:06:06Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to use Application.Hyperlink in ArcMap?</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/unable-to-use-application-hyperlink-in-arcmap/m-p/422572#M11386</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Halil,&lt;BR /&gt;&lt;BR /&gt;Looking at your sample code I believe the sample you have found is specific to MS Access. If you want to open a website using VBA in ArcMap 9.3 use this code instead:&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;Dim iE As Object
Set iE = CreateObject("InternetExplorer.Application")
iE.navigate "&lt;A href="http://www.rivex.co.uk" rel="nofollow noopener noreferrer" target="_blank"&gt;www.rivex.co.uk&lt;/A&gt;"
iE.Visible = True&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;Duncan&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Perfect, thanks Duncan.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 19:05:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/unable-to-use-application-hyperlink-in-arcmap/m-p/422572#M11386</guid>
      <dc:creator>HalilSiddique</dc:creator>
      <dc:date>2021-12-11T19:05:20Z</dc:date>
    </item>
  </channel>
</rss>

