<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Browser Links</title>
	<atom:link href="http://www.dailydoseofexcel.com/archives/2005/02/28/browser-links/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dailydoseofexcel.com/archives/2005/02/28/browser-links/</link>
	<description>Daily posts of Excel tips…and other stuff</description>
	<lastBuildDate>Tue, 07 Feb 2012 23:32:04 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Tiavaez</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/02/28/browser-links/#comment-24458</link>
		<dc:creator>Tiavaez</dc:creator>
		<pubDate>Thu, 31 May 2007 22:50:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1026#comment-24458</guid>
		<description>&lt;p&gt;Very interesting site!&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Very interesting site!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Peltier</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/02/28/browser-links/#comment-10869</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Wed, 13 Apr 2005 16:56:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1026#comment-10869</guid>
		<description>&lt;p&gt;Peter -&lt;/p&gt;
&lt;p&gt;You must first set a reference (VB Editor&#039;s Tools menu) to the IE object library.&lt;/p&gt;
&lt;p&gt;- Jon&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Peter -</p>
<p>You must first set a reference (VB Editor&#8217;s Tools menu) to the IE object library.</p>
<p>- Jon</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/02/28/browser-links/#comment-10868</link>
		<dc:creator>Peter</dc:creator>
		<pubDate>Wed, 13 Apr 2005 15:12:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1026#comment-10868</guid>
		<description>&lt;p&gt;When I copy and paste the above code into Excel&#039;s VBA editor, it doesn&#039;t register as a subroutine that I can actually run.  My problem is that:&lt;/p&gt;
&lt;p&gt;Dim ieApp As InternetExplorer&lt;/p&gt;
&lt;p&gt;I don&#039;t register &quot;InternetExplorer&quot; as a valid type, e.g. String, Long, Single, etc.&lt;/p&gt;
&lt;p&gt;Can you help?&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;- Peter&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>When I copy and paste the above code into Excel&#8217;s VBA editor, it doesn&#8217;t register as a subroutine that I can actually run.  My problem is that:</p>
<p>Dim ieApp As InternetExplorer</p>
<p>I don&#8217;t register &#8220;InternetExplorer&#8221; as a valid type, e.g. String, Long, Single, etc.</p>
<p>Can you help?</p>
<p>Thanks,</p>
<p>- Peter</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Helen</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/02/28/browser-links/#comment-9084</link>
		<dc:creator>Helen</dc:creator>
		<pubDate>Wed, 02 Mar 2005 16:13:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1026#comment-9084</guid>
		<description>&lt;p&gt;I&#039;ve got two quite decent workaround for you. :)&lt;/p&gt;
&lt;p&gt;One is to use early binding for the ieDoc object, which somehow seems to clarify the compiler&#039;s mind and remove the confusion between &quot;links&quot; as an element name and as an element type. Add a reference to &quot;Microsoft HTML object library&quot;, declare ieDoc As HTMLDocument, and the loop works fine.&lt;/p&gt;
&lt;p&gt;The other is to loop through all elements and check their typename. This works with both early and late binding.&lt;/p&gt;
&lt;p&gt;For Each ieElem In ieDoc.body.all&lt;br&gt;
    If TypeName(ieElem) = &quot;HTMLAnchorElement&quot; Then&lt;br&gt;
        Debug.Print ieElem.innertext&lt;br&gt;
    End If&lt;br&gt;
Next ieElem&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I&#8217;ve got two quite decent workaround for you. <img src='http://www.dailydoseofexcel.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>One is to use early binding for the ieDoc object, which somehow seems to clarify the compiler&#8217;s mind and remove the confusion between &#8220;links&#8221; as an element name and as an element type. Add a reference to &#8220;Microsoft HTML object library&#8221;, declare ieDoc As HTMLDocument, and the loop works fine.</p>
<p>The other is to loop through all elements and check their typename. This works with both early and late binding.</p>
<p>For Each ieElem In ieDoc.body.all<br />
    If TypeName(ieElem) = &#8220;HTMLAnchorElement&#8221; Then<br />
        Debug.Print ieElem.innertext<br />
    End If<br />
Next ieElem</p>
]]></content:encoded>
	</item>
</channel>
</rss>

