<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[HTTP Dateidownload]]></title><description><![CDATA[<p>Hi! Kann mir jemand sagen mit welcher Funktion man mit dem http Protokoll Seiten bzw. Bilder aus dem Internet speichern kann?<br />
Ich bin soweit gekommen(denke mal das ist richtig!?):</p>
<pre><code class="language-cpp">InternetOpen(...);
InternetConnect(...);

...

InternetCloseHandle(...);
InternetCloseHandle(...);
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/topic/173173/http-dateidownload</link><generator>RSS for Node</generator><lastBuildDate>Mon, 13 Jul 2026 09:57:47 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/173173.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 12 Feb 2007 16:28:19 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to HTTP Dateidownload on Mon, 12 Feb 2007 16:28:19 GMT]]></title><description><![CDATA[<p>Hi! Kann mir jemand sagen mit welcher Funktion man mit dem http Protokoll Seiten bzw. Bilder aus dem Internet speichern kann?<br />
Ich bin soweit gekommen(denke mal das ist richtig!?):</p>
<pre><code class="language-cpp">InternetOpen(...);
InternetConnect(...);

...

InternetCloseHandle(...);
InternetCloseHandle(...);
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1227539</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1227539</guid><dc:creator><![CDATA[PsychoticStyx]]></dc:creator><pubDate>Mon, 12 Feb 2007 16:28:19 GMT</pubDate></item><item><title><![CDATA[Reply to HTTP Dateidownload on Mon, 12 Feb 2007 16:44:56 GMT]]></title><description><![CDATA[<p><a href="http://msdn2.microsoft.com/en-us/library/aa385103.aspx" rel="nofollow">http://msdn2.microsoft.com/en-us/library/aa385103.aspx</a><br />
bsp: <a href="http://support.microsoft.com/kb/149413/de" rel="nofollow">http://support.microsoft.com/kb/149413/de</a></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1227557</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1227557</guid><dc:creator><![CDATA[miller_m]]></dc:creator><pubDate>Mon, 12 Feb 2007 16:44:56 GMT</pubDate></item><item><title><![CDATA[Reply to HTTP Dateidownload on Mon, 12 Feb 2007 17:01:49 GMT]]></title><description><![CDATA[<p>Geht auch:</p>
<pre><code class="language-cpp">URLDownloadToFile(0, url, file, 0, 0);
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1227581</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1227581</guid><dc:creator><![CDATA[keksekekse]]></dc:creator><pubDate>Mon, 12 Feb 2007 17:01:49 GMT</pubDate></item><item><title><![CDATA[Reply to HTTP Dateidownload on Mon, 12 Feb 2007 17:05:15 GMT]]></title><description><![CDATA[<p>Vielen Dank für die Hilfe.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1227587</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1227587</guid><dc:creator><![CDATA[PsychoticStyx]]></dc:creator><pubDate>Mon, 12 Feb 2007 17:05:15 GMT</pubDate></item><item><title><![CDATA[Reply to HTTP Dateidownload on Mon, 12 Feb 2007 17:31:33 GMT]]></title><description><![CDATA[<p>Ich hab das jetzt mal gemacht und kriege trotzdem noch einen Fehler(&quot;error LNK2001: Nichtaufgeloestes externes Symbol _URLDownloadToFileA@20<br />
Debug/HTTP Dateirunterladen.exe : fatal error LNK1120: 1 unaufgeloeste externe Verweise&quot;).<br />
Liegt das an einer fehlenden lib Datei?<br />
Ansonsten hier noch mal mein Quelltext(hab mal die Fehlerabfragen wegen platz weggelassen.)</p>
<pre><code class="language-cpp">HINTERNET hInt, hVer;

InternetOpen(&quot;MeinHTTP&quot;, INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, INTERNET_FLAG_ASYNC);

InternetOpenUrl(hInt, url, NULL, NULL, NULL, NULL);

URLDownloadToFile(0, url, dateiname, 0, 0);

InternetCloseHandle(hVer);

InternetCloseHandle(hInt);
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1227621</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1227621</guid><dc:creator><![CDATA[PsychoticStyx]]></dc:creator><pubDate>Mon, 12 Feb 2007 17:31:33 GMT</pubDate></item><item><title><![CDATA[Reply to HTTP Dateidownload on Mon, 12 Feb 2007 17:39:28 GMT]]></title><description><![CDATA[<p>a) Du mußt die wininet-Bibliothek einbinden (oder auch inet)<br />
b) mit URLDownLoadToFile(); brauchst Du die anderen Funktionen garnicht</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1227624</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1227624</guid><dc:creator><![CDATA[keksekekse]]></dc:creator><pubDate>Mon, 12 Feb 2007 17:39:28 GMT</pubDate></item><item><title><![CDATA[Reply to HTTP Dateidownload on Tue, 13 Feb 2007 15:15:48 GMT]]></title><description><![CDATA[<p>Ich habs jetzt mal ohne die anderen Funktionen ausprobiert. wininet.lib war scheon eingebunden. Es wird aber trotzdem der gleiche Fehler ausgeworfen.<br />
hier mal der vollständige Quelltext:</p>
<pre><code class="language-cpp">#include &quot;stdafx.h&quot;
#include &lt;windows.h&gt;
#include &lt;winbase.h&gt;
#include &lt;wininet.h&gt;
#include &quot;urlmon.h&quot;

void DateiRunterladen();

int main(int argc, char* argv[])
{
	DateiRunterladen();
	system(&quot;Pause&quot;);

	return 0;
}

void DateiRunterladen()
{
	URLDownloadToFile(0, &quot;http://sp.de.ask.com/de/i/h/logo_ask_new_2.gif&quot;, &quot;logo_ask_new_2.gif&quot;, 0, 0);
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1228216</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1228216</guid><dc:creator><![CDATA[PsychoticStyx]]></dc:creator><pubDate>Tue, 13 Feb 2007 15:15:48 GMT</pubDate></item><item><title><![CDATA[Reply to HTTP Dateidownload on Tue, 13 Feb 2007 15:41:04 GMT]]></title><description><![CDATA[<p><a href="http://msdn.microsoft.com/workshop/networking/moniker/reference/functions/urldownloadtofile.asp" rel="nofollow">http://msdn.microsoft.com/workshop/networking/moniker/reference/functions/urldownloadtofile.asp</a></p>
<p>msdn schrieb:</p>
<blockquote>
<p>Function Information</p>
<p>Stock Implementation urlmon.dll<br />
Custom Implementation No<br />
Header Urlmon.h<br />
Import library Urlmon.lib<br />
Minimum availability Internet Explorer 3.0<br />
Minimum operating systems Windows NT 4.0, Windows 95<br />
Unicode Implemented as ANSI and Unicode versions.</p>
</blockquote>
]]></description><link>https://www.c-plusplus.net/forum/post/1228236</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1228236</guid><dc:creator><![CDATA[miller_m]]></dc:creator><pubDate>Tue, 13 Feb 2007 15:41:04 GMT</pubDate></item><item><title><![CDATA[Reply to HTTP Dateidownload on Tue, 13 Feb 2007 16:10:31 GMT]]></title><description><![CDATA[<p>Danke, die hat gefehlt. Läuft jetzt.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1228256</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1228256</guid><dc:creator><![CDATA[PsychoticStyx]]></dc:creator><pubDate>Tue, 13 Feb 2007 16:10:31 GMT</pubDate></item></channel></rss>