<?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: VB(A) and InternetExplorer and XMLHttp</title>
	<atom:link href="http://www.dailydoseofexcel.com/archives/2007/08/03/vba-and-internetexplorer-and-xmlhttp/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dailydoseofexcel.com/archives/2007/08/03/vba-and-internetexplorer-and-xmlhttp/</link>
	<description>Daily posts of Excel tips…and other stuff</description>
	<lastBuildDate>Thu, 09 Feb 2012 23:42:03 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: atsm</title>
		<link>http://www.dailydoseofexcel.com/archives/2007/08/03/vba-and-internetexplorer-and-xmlhttp/#comment-29846</link>
		<dc:creator>atsm</dc:creator>
		<pubDate>Fri, 11 Jan 2008 13:31:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1708#comment-29846</guid>
		<description>&lt;p&gt;Hi ,&lt;br&gt;
   im actually trying to log into my yahoo inbox and search a particular mail from QTP .For this i was tryin to use thw Wsh to send keys , turns out thats not an option .Then i used the Internet explorer object , however i do not know how to browse the application with that kinda scriptin.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hi ,<br />
   im actually trying to log into my yahoo inbox and search a particular mail from QTP .For this i was tryin to use thw Wsh to send keys , turns out thats not an option .Then i used the Internet explorer object , however i do not know how to browse the application with that kinda scriptin.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joshua Collier</title>
		<link>http://www.dailydoseofexcel.com/archives/2007/08/03/vba-and-internetexplorer-and-xmlhttp/#comment-27572</link>
		<dc:creator>Joshua Collier</dc:creator>
		<pubDate>Fri, 21 Sep 2007 23:33:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1708#comment-27572</guid>
		<description>&lt;p&gt;I have been looking for a way to grab information from a website and paste it into Excel.  The idea is to use Excel to surf to a particular website, select an option from an option box, move forward a page, copy that information into a spreadsheet, then move back a page and select the next option in the option box.  So far I cannot find any resources as to how to identify and get the elements from the option box, count the elements in the option box, whatever.  Anyone have any suggestions?&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I have been looking for a way to grab information from a website and paste it into Excel.  The idea is to use Excel to surf to a particular website, select an option from an option box, move forward a page, copy that information into a spreadsheet, then move back a page and select the next option in the option box.  So far I cannot find any resources as to how to identify and get the elements from the option box, count the elements in the option box, whatever.  Anyone have any suggestions?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jkpieterse</title>
		<link>http://www.dailydoseofexcel.com/archives/2007/08/03/vba-and-internetexplorer-and-xmlhttp/#comment-26282</link>
		<dc:creator>jkpieterse</dc:creator>
		<pubDate>Wed, 08 Aug 2007 06:22:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1708#comment-26282</guid>
		<description>&lt;p&gt;Hi Tushar,&lt;/p&gt;
&lt;p&gt;Excellent article.&lt;/p&gt;
&lt;p&gt;A suggestion though. There is no need to go through the hoops of creating a class with a default property, the msxml.DOMDocument has two events you can use. In the Class, you can:&lt;/p&gt;
&lt;div style=&quot;overflow: auto; white-space: nowrap;&quot; class=&quot;codecolorer-container vb default&quot;&gt;&lt;div style=&quot;white-space: nowrap;&quot; class=&quot;vb codecolorer&quot;&gt;&lt;span class=&quot;kw1&quot;&gt;Public&lt;/span&gt; &lt;span class=&quot;kw1&quot;&gt;WithEvents&lt;/span&gt; DOMEvent &lt;span class=&quot;kw1&quot;&gt;As&lt;/span&gt; DOMDocument&lt;br&gt;
&lt;br&gt;
&lt;span class=&quot;kw1&quot;&gt;Private&lt;/span&gt; &lt;span class=&quot;kw1&quot;&gt;Sub&lt;/span&gt; DOMEvent_onreadystatechange()&lt;br&gt;
&#160; &#160; &lt;span class=&quot;kw1&quot;&gt;If&lt;/span&gt; DOMEvent.readyState = 4 &lt;span class=&quot;kw1&quot;&gt;Then&lt;/span&gt;&lt;br&gt;
&#160; &#160; &#160; &#160; MsgBox &lt;span class=&quot;st0&quot;&gt;&quot;Loaded.&quot;&lt;/span&gt; &amp; DOMEvent.XML&lt;br&gt;
&#160; &#160; &lt;span class=&quot;kw1&quot;&gt;End&lt;/span&gt; &lt;span class=&quot;kw1&quot;&gt;If&lt;/span&gt;&lt;br&gt;
&lt;span class=&quot;kw1&quot;&gt;End&lt;/span&gt; &lt;span class=&quot;kw1&quot;&gt;Sub&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;Then in a normal module (or wherever you put the code that calls up some XML):&lt;/p&gt;
&lt;div style=&quot;overflow: auto; white-space: nowrap;&quot; class=&quot;codecolorer-container vb default&quot;&gt;&lt;div style=&quot;white-space: nowrap;&quot; class=&quot;vb codecolorer&quot;&gt;&lt;span class=&quot;kw1&quot;&gt;Dim&lt;/span&gt; moXMLdoc &lt;span class=&quot;kw1&quot;&gt;As&lt;/span&gt; MSXML2.DOMDocument&lt;br&gt;
&lt;span class=&quot;kw1&quot;&gt;Dim&lt;/span&gt; mcXMLClass &lt;span class=&quot;kw1&quot;&gt;As&lt;/span&gt; clsMSXML&lt;br&gt;
&lt;br&gt;
&lt;span class=&quot;kw1&quot;&gt;Sub&lt;/span&gt; demo()&lt;br&gt;
&#160; &#160; &lt;span class=&quot;kw1&quot;&gt;Set&lt;/span&gt; mcXMLClass = &lt;span class=&quot;kw1&quot;&gt;New&lt;/span&gt; clsMSXML&lt;br&gt;
&#160; &#160; &lt;span class=&quot;kw1&quot;&gt;Set&lt;/span&gt; moXMLdoc = &lt;span class=&quot;kw1&quot;&gt;New&lt;/span&gt; MSXML2.DOMDocument&lt;br&gt;
&#160; &#160; &lt;span class=&quot;kw1&quot;&gt;Set&lt;/span&gt; mcXMLClass.DOMEvent = moXMLdoc&lt;br&gt;
&#160; &#160; moXMLdoc.async = &lt;span class=&quot;kw1&quot;&gt;True&lt;/span&gt;&lt;br&gt;
&#160; &#160; moXMLdoc.Load &lt;span class=&quot;st0&quot;&gt;&quot;http://www.jkp-ads.com/feed.xml&quot;&lt;/span&gt;&lt;br&gt;
&lt;span class=&quot;kw1&quot;&gt;End&lt;/span&gt; &lt;span class=&quot;kw1&quot;&gt;Sub&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;
</description>
		<content:encoded><![CDATA[<p>Hi Tushar,</p>
<p>Excellent article.</p>
<p>A suggestion though. There is no need to go through the hoops of creating a class with a default property, the msxml.DOMDocument has two events you can use. In the Class, you can:</p>
<div style="overflow: auto; white-space: nowrap;" class="codecolorer-container vb default">
<div style="white-space: nowrap;" class="vb codecolorer"><span class="kw1">Public</span> <span class="kw1">WithEvents</span> DOMEvent <span class="kw1">As</span> DOMDocument</p>
<p><span class="kw1">Private</span> <span class="kw1">Sub</span> DOMEvent_onreadystatechange()<br />
&nbsp; &nbsp; <span class="kw1">If</span> DOMEvent.readyState = 4 <span class="kw1">Then</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; MsgBox <span class="st0">&#8220;Loaded.&#8221;</span> &amp;amp; DOMEvent.XML<br />
&nbsp; &nbsp; <span class="kw1">End</span> <span class="kw1">If</span><br />
<span class="kw1">End</span> <span class="kw1">Sub</span></div>
</div>
<p>Then in a normal module (or wherever you put the code that calls up some XML):</p>
<div style="overflow: auto; white-space: nowrap;" class="codecolorer-container vb default">
<div style="white-space: nowrap;" class="vb codecolorer"><span class="kw1">Dim</span> moXMLdoc <span class="kw1">As</span> MSXML2.DOMDocument<br />
<span class="kw1">Dim</span> mcXMLClass <span class="kw1">As</span> clsMSXML</p>
<p><span class="kw1">Sub</span> demo()<br />
&nbsp; &nbsp; <span class="kw1">Set</span> mcXMLClass = <span class="kw1">New</span> clsMSXML<br />
&nbsp; &nbsp; <span class="kw1">Set</span> moXMLdoc = <span class="kw1">New</span> MSXML2.DOMDocument<br />
&nbsp; &nbsp; <span class="kw1">Set</span> mcXMLClass.DOMEvent = moXMLdoc<br />
&nbsp; &nbsp; moXMLdoc.async = <span class="kw1">True</span><br />
&nbsp; &nbsp; moXMLdoc.Load <span class="st0">&#8220;http://www.jkp-ads.com/feed.xml&#8221;</span><br />
<span class="kw1">End</span> <span class="kw1">Sub</span></div>
</div>
]]></content:encoded>
	</item>
	<item>
		<title>By: Randy</title>
		<link>http://www.dailydoseofexcel.com/archives/2007/08/03/vba-and-internetexplorer-and-xmlhttp/#comment-26246</link>
		<dc:creator>Randy</dc:creator>
		<pubDate>Tue, 07 Aug 2007 03:46:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1708#comment-26246</guid>
		<description>&lt;p&gt;I use FireFox instead of IE and don&#039;t even have IE7 installed, so I&#039;m not sure of the nuances there.  I actually use the XMLHTTP protocol in my add-in and parse the raw data instead of using the COM object when I get data from the web:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://finance.groups.yahoo.com/group/smf_addin/&quot; rel=&quot;nofollow&quot;&gt;http://finance.groups.yahoo.com/group/smf_addin/&lt;/a&gt;&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I use FireFox instead of IE and don&#8217;t even have IE7 installed, so I&#8217;m not sure of the nuances there.  I actually use the XMLHTTP protocol in my add-in and parse the raw data instead of using the COM object when I get data from the web:</p>
<p><a href="http://finance.groups.yahoo.com/group/smf_addin/" rel="nofollow">http://finance.groups.yahoo.com/group/smf_addin/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Huaming</title>
		<link>http://www.dailydoseofexcel.com/archives/2007/08/03/vba-and-internetexplorer-and-xmlhttp/#comment-26244</link>
		<dc:creator>Huaming</dc:creator>
		<pubDate>Tue, 07 Aug 2007 03:18:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1708#comment-26244</guid>
		<description>&lt;p&gt;Thanks, Randy!!!  It does what I wanted.  But can you merge these two windows into same one window but in two separate tabs?&lt;br&gt;
Huamiang&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Thanks, Randy!!!  It does what I wanted.  But can you merge these two windows into same one window but in two separate tabs?<br />
Huamiang</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Randy</title>
		<link>http://www.dailydoseofexcel.com/archives/2007/08/03/vba-and-internetexplorer-and-xmlhttp/#comment-26243</link>
		<dc:creator>Randy</dc:creator>
		<pubDate>Tue, 07 Aug 2007 03:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1708#comment-26243</guid>
		<description>&lt;p&gt;Try creating your second EXCEL object as:&lt;/p&gt;
&lt;p&gt;Set oIE2 = CreateObject(&quot;InternetExplorer.Application&quot;)&lt;br&gt;
oIE2.Visible = True&lt;br&gt;
oIE2.Navigate txtURL2&lt;/p&gt;
&lt;p&gt;Using the &quot;1? flag would have the same problem your original code did -- it&#039;s trying to open the URL in a new window.  Your browser security settings may be preventing that.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Try creating your second EXCEL object as:</p>
<p>Set oIE2 = CreateObject(&#8220;InternetExplorer.Application&#8221;)<br />
oIE2.Visible = True<br />
oIE2.Navigate txtURL2</p>
<p>Using the &#8220;1? flag would have the same problem your original code did &#8212; it&#8217;s trying to open the URL in a new window.  Your browser security settings may be preventing that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Huaming</title>
		<link>http://www.dailydoseofexcel.com/archives/2007/08/03/vba-and-internetexplorer-and-xmlhttp/#comment-26242</link>
		<dc:creator>Huaming</dc:creator>
		<pubDate>Tue, 07 Aug 2007 02:38:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1708#comment-26242</guid>
		<description>&lt;p&gt;Hi, Randy,&lt;br&gt;
I use the &quot;navigate2? method to keep these two web sites in two separate tabs underneath same Internet Explorer window.  This is to make it little easier to compare and to follow links in them.  I also tried to create another oIE object by using the following procedure, but it does not work either.&lt;br&gt;
Huaming&lt;/p&gt;
&lt;div style=&quot;overflow: auto; white-space: nowrap;&quot; class=&quot;codecolorer-container vb default&quot;&gt;&lt;div style=&quot;white-space: nowrap;&quot; class=&quot;vb codecolorer&quot;&gt;&lt;span class=&quot;kw1&quot;&gt;Set&lt;/span&gt; oIE2 = CreateObject(&lt;span class=&quot;st0&quot;&gt;&quot;InternetExplorer.Application&quot;&lt;/span&gt;)&lt;br&gt;
oIE2.Visible = &lt;span class=&quot;kw1&quot;&gt;True&lt;/span&gt;&lt;br&gt;
oIE2.Navigate2 txtURL2, 1&lt;/div&gt;&lt;/div&gt;
</description>
		<content:encoded><![CDATA[<p>Hi, Randy,<br />
I use the &#8220;navigate2? method to keep these two web sites in two separate tabs underneath same Internet Explorer window.  This is to make it little easier to compare and to follow links in them.  I also tried to create another oIE object by using the following procedure, but it does not work either.<br />
Huaming</p>
<div style="overflow: auto; white-space: nowrap;" class="codecolorer-container vb default">
<div style="white-space: nowrap;" class="vb codecolorer"><span class="kw1">Set</span> oIE2 = CreateObject(<span class="st0">&#8220;InternetExplorer.Application&#8221;</span>)<br />
oIE2.Visible = <span class="kw1">True</span><br />
oIE2.Navigate2 txtURL2, 1</div>
</div>
]]></content:encoded>
	</item>
	<item>
		<title>By: Randy</title>
		<link>http://www.dailydoseofexcel.com/archives/2007/08/03/vba-and-internetexplorer-and-xmlhttp/#comment-26239</link>
		<dc:creator>Randy</dc:creator>
		<pubDate>Tue, 07 Aug 2007 00:55:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1708#comment-26239</guid>
		<description>&lt;p&gt;Huaming -- Why did you switch over to the Navigate2 method and ask for it to open in another window?  On my machine, the browser settings block the opening of the second window, which is why nothing changes for me.&lt;/p&gt;
&lt;p&gt;It works fine for me if I just use:&lt;/p&gt;
&lt;p&gt;oIE.Navigate txtURL2&lt;/p&gt;
&lt;p&gt;...for the second web page retrieval. In any case, even if the IE object were to open another window for the second web page, you&#039;d need to refer to THAT object to get your outerHTML data (not sure how to do that).&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Huaming &#8212; Why did you switch over to the Navigate2 method and ask for it to open in another window?  On my machine, the browser settings block the opening of the second window, which is why nothing changes for me.</p>
<p>It works fine for me if I just use:</p>
<p>oIE.Navigate txtURL2</p>
<p>&#8230;for the second web page retrieval. In any case, even if the IE object were to open another window for the second web page, you&#8217;d need to refer to THAT object to get your outerHTML data (not sure how to do that).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Huaming</title>
		<link>http://www.dailydoseofexcel.com/archives/2007/08/03/vba-and-internetexplorer-and-xmlhttp/#comment-26234</link>
		<dc:creator>Huaming</dc:creator>
		<pubDate>Tue, 07 Aug 2007 00:22:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1708#comment-26234</guid>
		<description>&lt;p&gt;Thank you very much for your greatly useful tips, Tushar.  I have been enjoying reading your articles here and in your web site. &lt;/p&gt;
&lt;p&gt;Would you mind giving me some help with my case as the following?&lt;/p&gt;
&lt;p&gt;I&#039;d like to open two different web sites and and then combine the information from these two sites.  I can grab the information that I want from the first web site, but I cannot get any information from the second web site.  It looks like the oIE.document object always point to the first web site and does not switch to the second after it is loaded.  Hope you can point out the things that I am doing wrong here and offer some solutions.&lt;/p&gt;
&lt;p&gt;Huaming&lt;/p&gt;
&lt;p&gt;Here is my procedure and I am using Internet Explorer 7&lt;/p&gt;
&lt;div style=&quot;overflow: auto; white-space: nowrap;&quot; class=&quot;codecolorer-container vb default&quot;&gt;&lt;div style=&quot;white-space: nowrap;&quot; class=&quot;vb codecolorer&quot;&gt;&lt;span class=&quot;kw1&quot;&gt;Sub&lt;/span&gt; NavigateToTwoWebSites()&lt;br&gt;
&lt;br&gt;
txtURL1 = &lt;span class=&quot;st0&quot;&gt;&quot;http://www.google.com/&quot;&lt;/span&gt;&lt;br&gt;
txtURL2 = &lt;span class=&quot;st0&quot;&gt;&quot;http://www.yahoo.com/&quot;&lt;/span&gt;&lt;br&gt;
&lt;br&gt;
&lt;span class=&quot;kw1&quot;&gt;Set&lt;/span&gt; oIE = CreateObject(&lt;span class=&quot;st0&quot;&gt;&quot;InternetExplorer.Application&quot;&lt;/span&gt;)&lt;br&gt;
oIE.Visible = &lt;span class=&quot;kw1&quot;&gt;True&lt;/span&gt;&lt;br&gt;
oIE.Navigate txtURL1&lt;br&gt;
&lt;br&gt;
&lt;span class=&quot;kw1&quot;&gt;While&lt;/span&gt; oIE.Busy &lt;span class=&quot;kw1&quot;&gt;Or&lt;/span&gt; oIE.ReadyState &#160;READYSTATE_COMPLETE &lt;br&gt;
DoEvents&lt;br&gt;
Wend&lt;br&gt;
&lt;br&gt;
Debug.&lt;span class=&quot;kw1&quot;&gt;Print&lt;/span&gt; oIE.document.all.tags(&lt;span class=&quot;st0&quot;&gt;&quot;A&quot;&lt;/span&gt;).Item(0).outerHTML&lt;br&gt;
&lt;br&gt;
oIE.Navigate2 txtURL2, 1&lt;br&gt;
&lt;br&gt;
&lt;span class=&quot;kw1&quot;&gt;While&lt;/span&gt; oIE.Busy &lt;span class=&quot;kw1&quot;&gt;Or&lt;/span&gt; oIE.ReadyState &#160;READYSTATE_COMPLETE &lt;br&gt;
DoEvents&lt;br&gt;
Wend&lt;br&gt;
&lt;br&gt;
Debug.&lt;span class=&quot;kw1&quot;&gt;Print&lt;/span&gt; oIE.document.all.tags(&lt;span class=&quot;st0&quot;&gt;&quot;A&quot;&lt;/span&gt;).Item(0).outerHTML&lt;br&gt;
&lt;br&gt;
&lt;span class=&quot;kw1&quot;&gt;Set&lt;/span&gt; oIE = &lt;span class=&quot;kw1&quot;&gt;Nothing&lt;/span&gt;&lt;br&gt;
&lt;span class=&quot;kw1&quot;&gt;End&lt;/span&gt; &lt;span class=&quot;kw1&quot;&gt;Sub&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;
</description>
		<content:encoded><![CDATA[<p>Thank you very much for your greatly useful tips, Tushar.  I have been enjoying reading your articles here and in your web site. </p>
<p>Would you mind giving me some help with my case as the following?</p>
<p>I&#8217;d like to open two different web sites and and then combine the information from these two sites.  I can grab the information that I want from the first web site, but I cannot get any information from the second web site.  It looks like the oIE.document object always point to the first web site and does not switch to the second after it is loaded.  Hope you can point out the things that I am doing wrong here and offer some solutions.</p>
<p>Huaming</p>
<p>Here is my procedure and I am using Internet Explorer 7</p>
<div style="overflow: auto; white-space: nowrap;" class="codecolorer-container vb default">
<div style="white-space: nowrap;" class="vb codecolorer"><span class="kw1">Sub</span> NavigateToTwoWebSites()</p>
<p>txtURL1 = <span class="st0">&#8220;http://www.google.com/&#8221;</span><br />
txtURL2 = <span class="st0">&#8220;http://www.yahoo.com/&#8221;</span></p>
<p><span class="kw1">Set</span> oIE = CreateObject(<span class="st0">&#8220;InternetExplorer.Application&#8221;</span>)<br />
oIE.Visible = <span class="kw1">True</span><br />
oIE.Navigate txtURL1</p>
<p><span class="kw1">While</span> oIE.Busy <span class="kw1">Or</span> oIE.ReadyState &nbsp;READYSTATE_COMPLETE <br />
DoEvents<br />
Wend</p>
<p>Debug.<span class="kw1">Print</span> oIE.document.all.tags(<span class="st0">&#8220;A&#8221;</span>).Item(0).outerHTML</p>
<p>oIE.Navigate2 txtURL2, 1</p>
<p><span class="kw1">While</span> oIE.Busy <span class="kw1">Or</span> oIE.ReadyState &nbsp;READYSTATE_COMPLETE <br />
DoEvents<br />
Wend</p>
<p>Debug.<span class="kw1">Print</span> oIE.document.all.tags(<span class="st0">&#8220;A&#8221;</span>).Item(0).outerHTML</p>
<p><span class="kw1">Set</span> oIE = <span class="kw1">Nothing</span><br />
<span class="kw1">End</span> <span class="kw1">Sub</span></div>
</div>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott</title>
		<link>http://www.dailydoseofexcel.com/archives/2007/08/03/vba-and-internetexplorer-and-xmlhttp/#comment-26173</link>
		<dc:creator>Scott</dc:creator>
		<pubDate>Sat, 04 Aug 2007 05:37:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1708#comment-26173</guid>
		<description>&lt;p&gt;Awesome awesome article! Thank you so much for publishing this!!!&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Awesome awesome article! Thank you so much for publishing this!!!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

