<?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[Internetverbindung]]></title><description><![CDATA[<p>Hallo,</p>
<p>ich wollte fragen wie man sich mit dem Internetverbinden kann. Also z.B. bei einer Seite etwas downloaden.</p>
<p>Vielen Dank</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/127929/internetverbindung</link><generator>RSS for Node</generator><lastBuildDate>Wed, 29 Jul 2026 03:49:02 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/127929.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 28 Nov 2005 19:43:43 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Internetverbindung on Mon, 28 Nov 2005 19:43:43 GMT]]></title><description><![CDATA[<p>Hallo,</p>
<p>ich wollte fragen wie man sich mit dem Internetverbinden kann. Also z.B. bei einer Seite etwas downloaden.</p>
<p>Vielen Dank</p>
]]></description><link>https://www.c-plusplus.net/forum/post/929218</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/929218</guid><dc:creator><![CDATA[Xion0815]]></dc:creator><pubDate>Mon, 28 Nov 2005 19:43:43 GMT</pubDate></item><item><title><![CDATA[Reply to Internetverbindung on Mon, 28 Nov 2005 19:47:48 GMT]]></title><description><![CDATA[<p>Hallo</p>
<p>Verbinden : siehe WinAPI-Forum<br />
Seite downloaden : in BCB-Hilfe nach TCppWebbrowser schauen</p>
<p>bis bald<br />
akari</p>
]]></description><link>https://www.c-plusplus.net/forum/post/929222</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/929222</guid><dc:creator><![CDATA[akari]]></dc:creator><pubDate>Mon, 28 Nov 2005 19:47:48 GMT</pubDate></item><item><title><![CDATA[Reply to Internetverbindung on Mon, 28 Nov 2005 19:53:52 GMT]]></title><description><![CDATA[<p>Das</p>
<p>Xion0815 schrieb:</p>
<blockquote>
<p>sich mit dem Internetverbinden</p>
</blockquote>
<p>und das</p>
<blockquote>
<p>bei einer Seite etwas downloaden</p>
</blockquote>
<p>sind zwei völlig verschiedene Paar Schuhe.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/929232</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/929232</guid><dc:creator><![CDATA[Ringding]]></dc:creator><pubDate>Mon, 28 Nov 2005 19:53:52 GMT</pubDate></item><item><title><![CDATA[Reply to Internetverbindung on Tue, 29 Nov 2005 14:28:49 GMT]]></title><description><![CDATA[<p>Hallo</p>
<blockquote>
<p>Also z.B. bei einer Seite etwas downloaden.</p>
</blockquote>
<p>Vorrausgesetzt, Du bist schon mit den Internet verbunden, kannst Du<br />
eine Datei so herunterladen:</p>
<pre><code class="language-cpp">#include &quot;Unit1.h&quot;
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource &quot;*.dfm&quot;
TForm1 *Form1;
AnsiString url=&quot;http://BlaBlaBla.com//Test.jpg&quot;;
AnsiString datei=&quot;c:\\Test.jpg&quot;;
//---------------------------------------------------------------------------
__fastcall TForm1::TForm1(TComponent* Owner)
        : TForm(Owner)
{
NMHTTP1-&gt;Body=datei;
NMHTTP1-&gt;Get(url);
}
</code></pre>
<p>Ist nur ein Beispiel</p>
<p>WerdNochWahnsinnig</p>
]]></description><link>https://www.c-plusplus.net/forum/post/929766</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/929766</guid><dc:creator><![CDATA[WerdNochWahnsinnig]]></dc:creator><pubDate>Tue, 29 Nov 2005 14:28:49 GMT</pubDate></item><item><title><![CDATA[Reply to Internetverbindung on Tue, 29 Nov 2005 14:36:56 GMT]]></title><description><![CDATA[<p>Sorry, war ein &quot;/&quot; zuviel.<br />
So ist es richtig:</p>
<pre><code class="language-cpp">#include &quot;Unit1.h&quot;
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource &quot;*.dfm&quot;
TForm1 *Form1;
AnsiString url=&quot;http://BlaBlaBla.com/Test.jpg&quot;;
AnsiString datei=&quot;c:\\Test.jpg&quot;;
//---------------------------------------------------------------------------
__fastcall TForm1::TForm1(TComponent* Owner)
        : TForm(Owner)
{
NMHTTP1-&gt;Body=datei;
NMHTTP1-&gt;Get(url);
}
</code></pre>
<p>Achja, Du musst vorher natürlich eine TNMHTTP-Komponente einfügen.<br />
Schau mal in der Builder-Hilfe nach TNMHTTP.</p>
<p>WerdNochWahnsinnig</p>
]]></description><link>https://www.c-plusplus.net/forum/post/929777</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/929777</guid><dc:creator><![CDATA[WerdNochWahnsinnig]]></dc:creator><pubDate>Tue, 29 Nov 2005 14:36:56 GMT</pubDate></item></channel></rss>