<?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: Reading the internet</title>
	<atom:link href="http://www.dailydoseofexcel.com/archives/2005/10/13/reading-the-internet/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dailydoseofexcel.com/archives/2005/10/13/reading-the-internet/</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: Alexis Kastor</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/10/13/reading-the-internet/#comment-24769</link>
		<dc:creator>Alexis Kastor</dc:creator>
		<pubDate>Thu, 14 Jun 2007 10:58:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1258#comment-24769</guid>
		<description>&lt;p&gt;This one makes sence &quot;One&#039;s first step in wisdom is to kuesstion everything - and one&#039;s last is to come to terms with everything.&quot;&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>This one makes sence &#8220;One&#8217;s first step in wisdom is to kuesstion everything &#8211; and one&#8217;s last is to come to terms with everything.&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Frank</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/10/13/reading-the-internet/#comment-18882</link>
		<dc:creator>Frank</dc:creator>
		<pubDate>Sat, 18 Feb 2006 01:39:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1258#comment-18882</guid>
		<description>&lt;p&gt;Does anyone know how to simply download an html file from the internet? I just want to be able to download html from any website to use in excel... The methods posted above don&#039;t seem to work for me when I change the URL to something like Yahoo.com&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Does anyone know how to simply download an html file from the internet? I just want to be able to download html from any website to use in excel&#8230; The methods posted above don&#8217;t seem to work for me when I change the URL to something like Yahoo.com</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/10/13/reading-the-internet/#comment-17426</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Mon, 07 Nov 2005 03:21:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1258#comment-17426</guid>
		<description>&lt;p&gt;Another method to download a file from the internet with XMLHTTP - but without ADO - below&lt;/p&gt;
&lt;p&gt;Sub GetXLs()&lt;br&gt;
    Dim WebUrlStr As String, LocalFile As String&lt;br&gt;
    Dim oXMLHTTP As Object, bArray() As Byte, hfile As Integer&lt;br&gt;
    Dim newWB As Workbook&lt;/p&gt;
&lt;p&gt;    &#039;credit to Matt Vidas from Expert-Exchange &amp; VBAeXpress&lt;/p&gt;
&lt;p&gt;    Set oXMLHTTP = CreateObject(&quot;Microsoft.XMLHTTP&quot;)&lt;/p&gt;
&lt;p&gt;    &#039;download the file from the web to the hardrive&lt;br&gt;
    WebUrlStr = &quot;http://members.iinet.net.au/~brettdj/EE/Ltt.xls&quot;&lt;br&gt;
    LocalFile = &quot;c:Ltt.xls&quot;&lt;br&gt;
    oXMLHTTP.Open &quot;GET&quot;, WebUrlStr, False&lt;br&gt;
    oXMLHTTP.send&lt;br&gt;
    bArray = oXMLHTTP.ResponseBody&lt;br&gt;
    hfile = 1&lt;br&gt;
    Open LocalFile For Binary As #hfile&lt;br&gt;
    Put #hfile, , bArray&lt;br&gt;
    Close #hfile&lt;/p&gt;
&lt;p&gt;    Set newWB = Workbooks.Open(LocalFile)&lt;br&gt;
End Sub&lt;/p&gt;
&lt;p&gt;Cheers&lt;/p&gt;
&lt;p&gt;Dave&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Another method to download a file from the internet with XMLHTTP &#8211; but without ADO &#8211; below</p>
<p>Sub GetXLs()<br />
    Dim WebUrlStr As String, LocalFile As String<br />
    Dim oXMLHTTP As Object, bArray() As Byte, hfile As Integer<br />
    Dim newWB As Workbook</p>
<p>    &#8216;credit to Matt Vidas from Expert-Exchange &amp; VBAeXpress</p>
<p>    Set oXMLHTTP = CreateObject(&#8220;Microsoft.XMLHTTP&#8221;)</p>
<p>    &#8216;download the file from the web to the hardrive<br />
    WebUrlStr = &#8220;http://members.iinet.net.au/~brettdj/EE/Ltt.xls&#8221;<br />
    LocalFile = &#8220;c:Ltt.xls&#8221;<br />
    oXMLHTTP.Open &#8220;GET&#8221;, WebUrlStr, False<br />
    oXMLHTTP.send<br />
    bArray = oXMLHTTP.ResponseBody<br />
    hfile = 1<br />
    Open LocalFile For Binary As #hfile<br />
    Put #hfile, , bArray<br />
    Close #hfile</p>
<p>    Set newWB = Workbooks.Open(LocalFile)<br />
End Sub</p>
<p>Cheers</p>
<p>Dave</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Juan Pablo GonzÃAlez</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/10/13/reading-the-internet/#comment-16900</link>
		<dc:creator>Juan Pablo GonzÃAlez</dc:creator>
		<pubDate>Tue, 18 Oct 2005 14:56:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1258#comment-16900</guid>
		<description>&lt;p&gt;Graham&lt;/p&gt;
&lt;p&gt;Replace this line&lt;/p&gt;
&lt;p&gt;HtmlBody = Mid$(HtmlBody, InStr(1, HtmlBody, &quot;&lt;/a&gt;&lt;a href&quot;))&lt;/p&gt;
&lt;p&gt;with&lt;/p&gt;
&lt;p&gt;HtmlBody = Mid$(HtmlBody, InStr(1, HtmlBody, &quot;&lt;a href&quot;))&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Graham</p>
<p>Replace this line</p>
<p>HtmlBody = Mid$(HtmlBody, InStr(1, HtmlBody, &#8220;&lt;/a&gt;&lt;a href&#8221;))</p>
<p>with</p>
<p>HtmlBody = Mid$(HtmlBody, InStr(1, HtmlBody, &#8220;&lt;a href&#8221;))</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Graham</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/10/13/reading-the-internet/#comment-16898</link>
		<dc:creator>Graham</dc:creator>
		<pubDate>Mon, 17 Oct 2005 23:53:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1258#comment-16898</guid>
		<description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Just trying to follow this, looks very useful but I can&#039;t yet get it to function...When I paste the code into a module I&#039;m getting &quot;an invalid procedure call&quot; error at this line:&lt;/p&gt;
&lt;p&gt;HtmlBody = Mid$(HtmlBody, InStr(1, HtmlBody, &quot;&lt;a&gt;&lt;/a&gt;&lt;a&gt;&lt;/a&gt;&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Just trying to follow this, looks very useful but I can&#8217;t yet get it to function&#8230;When I paste the code into a module I&#8217;m getting &#8220;an invalid procedure call&#8221; error at this line:</p>
<p>HtmlBody = Mid$(HtmlBody, InStr(1, HtmlBody, &#8220;<a></a><a></a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Juan Pablo González</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/10/13/reading-the-internet/#comment-16834</link>
		<dc:creator>Juan Pablo González</dc:creator>
		<pubDate>Fri, 14 Oct 2005 19:42:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1258#comment-16834</guid>
		<description>&lt;p&gt;Yes, it does work... I&#039;ll try to clean the code a little and post it.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Yes, it does work&#8230; I&#8217;ll try to clean the code a little and post it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Juan Pablo González</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/10/13/reading-the-internet/#comment-16832</link>
		<dc:creator>Juan Pablo González</dc:creator>
		<pubDate>Fri, 14 Oct 2005 19:16:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1258#comment-16832</guid>
		<description>&lt;p&gt;Very cool Jake, thanks!&lt;/p&gt;
&lt;p&gt;This &quot;should&quot; mean too that I could download the file asynchronously as well ? (if I set the third parameter of the .Open to True ?&lt;/p&gt;
&lt;p&gt;Right now I&#039;m using the URLDownloadToFile, which I understand supports asynch downloads as well, but the implementation seems to be impossible.&lt;/p&gt;
&lt;p&gt;I guess I&#039;ll try that ! thanks again!&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Very cool Jake, thanks!</p>
<p>This &#8220;should&#8221; mean too that I could download the file asynchronously as well ? (if I set the third parameter of the .Open to True ?</p>
<p>Right now I&#8217;m using the URLDownloadToFile, which I understand supports asynch downloads as well, but the implementation seems to be impossible.</p>
<p>I guess I&#8217;ll try that ! thanks again!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jake Marx</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/10/13/reading-the-internet/#comment-16830</link>
		<dc:creator>Jake Marx</dc:creator>
		<pubDate>Fri, 14 Oct 2005 18:10:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1258#comment-16830</guid>
		<description>&lt;p&gt;JP,&lt;/p&gt;
&lt;p&gt;You can retrieve a file from the Web with the XMLHTTP object.  Here&#039;s some code that implements a &quot;file copy&quot; via HTTP:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://groups.google.com/group/microsoft.public.excel.programming/browse_thread/thread/d86562f72b3775a4/8b93dbf506ee96fd&quot; rel=&quot;nofollow&quot;&gt;http://groups.google.com/group/microsoft.public.excel.programming/browse_thread/thread/d86562f72b3775a4/8b93dbf506ee96fd&lt;/a&gt;&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>JP,</p>
<p>You can retrieve a file from the Web with the XMLHTTP object.  Here&#8217;s some code that implements a &#8220;file copy&#8221; via HTTP:</p>
<p><a href="http://groups.google.com/group/microsoft.public.excel.programming/browse_thread/thread/d86562f72b3775a4/8b93dbf506ee96fd" rel="nofollow">http://groups.google.com/group/microsoft.public.excel.programming/browse_thread/thread/d86562f72b3775a4/8b93dbf506ee96fd</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jim</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/10/13/reading-the-internet/#comment-16822</link>
		<dc:creator>Jim</dc:creator>
		<pubDate>Fri, 14 Oct 2005 14:23:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1258#comment-16822</guid>
		<description>&lt;p&gt;Juan&lt;br&gt;
Very cool, Your explanination was spot on and simple enough for an xlm challanged person such as my self&lt;br&gt;
Thanks for taking the time to post this.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Juan<br />
Very cool, Your explanination was spot on and simple enough for an xlm challanged person such as my self<br />
Thanks for taking the time to post this.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

