<?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[Daten vom Server laden]]></title><description><![CDATA[<p>Also ich bin ein voll NooB in Winapi,<br />
mit c++ hab ich aber schon etwas gemacht,<br />
jetzt hab ich die frage, wie ich an eine txt datei die auf einem Server liegt komme (bzw. jpg)</p>
<p>Ambesten einfach lokal speichern</p>
<p>wie geht das? mit z.b. <a href="http://eastbourne.ea.funpic.de/test.txt" rel="nofollow">http://eastbourne.ea.funpic.de/test.txt</a></p>
<p>kennt jemand ein tutorial oder könnte jemand einen beispielcode schreiben ..</p>
<p>Ich arbeite mit Dev-c++ deshalb kann ich mfc nicht nutzen...</p>
<p>warte sehnsüchtig auf antworten...</p>
<p>danke schonmal</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/138734/daten-vom-server-laden</link><generator>RSS for Node</generator><lastBuildDate>Mon, 13 Jul 2026 06:34:57 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/138734.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 28 Feb 2006 19:08:56 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Daten vom Server laden on Tue, 28 Feb 2006 19:08:56 GMT]]></title><description><![CDATA[<p>Also ich bin ein voll NooB in Winapi,<br />
mit c++ hab ich aber schon etwas gemacht,<br />
jetzt hab ich die frage, wie ich an eine txt datei die auf einem Server liegt komme (bzw. jpg)</p>
<p>Ambesten einfach lokal speichern</p>
<p>wie geht das? mit z.b. <a href="http://eastbourne.ea.funpic.de/test.txt" rel="nofollow">http://eastbourne.ea.funpic.de/test.txt</a></p>
<p>kennt jemand ein tutorial oder könnte jemand einen beispielcode schreiben ..</p>
<p>Ich arbeite mit Dev-c++ deshalb kann ich mfc nicht nutzen...</p>
<p>warte sehnsüchtig auf antworten...</p>
<p>danke schonmal</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1005381</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1005381</guid><dc:creator><![CDATA[download123]]></dc:creator><pubDate>Tue, 28 Feb 2006 19:08:56 GMT</pubDate></item><item><title><![CDATA[Reply to Daten vom Server laden on Tue, 28 Feb 2006 19:18:28 GMT]]></title><description><![CDATA[<p><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/wininet/wininet/wininet_reference.asp" rel="nofollow">http://msdn.microsoft.com/library/default.asp?url=/library/en-us/wininet/wininet/wininet_reference.asp</a></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1005391</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1005391</guid><dc:creator><![CDATA[lesen!]]></dc:creator><pubDate>Tue, 28 Feb 2006 19:18:28 GMT</pubDate></item><item><title><![CDATA[Reply to Daten vom Server laden on Tue, 28 Feb 2006 19:19:27 GMT]]></title><description><![CDATA[<p>Du solltest Dir mal die WInInet-Funktionen anschauen<br />
<a href="http://msdn.microsoft.com/library/en-us/wininet/wininet/wininet_functions.asp" rel="nofollow">http://msdn.microsoft.com/library/en-us/wininet/wininet/wininet_functions.asp</a><br />
und hier speziell:<br />
InternetOpenUrl<br />
<a href="http://msdn.microsoft.com/library/en-us/wininet/wininet/internetopenurl.asp" rel="nofollow">http://msdn.microsoft.com/library/en-us/wininet/wininet/internetopenurl.asp</a></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1005394</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1005394</guid><dc:creator><![CDATA[Jochen Kalmbach]]></dc:creator><pubDate>Tue, 28 Feb 2006 19:19:27 GMT</pubDate></item><item><title><![CDATA[Reply to Daten vom Server laden on Tue, 28 Feb 2006 19:48:44 GMT]]></title><description><![CDATA[<p>also ... ich bin jetzt soweit gekommen</p>
<pre><code class="language-cpp">#include &lt;windows.h&gt;
#include &lt;wininet.h&gt; 

int main()
{

HINTERNET test = InternetOpen(&quot;iexplorer&quot;, INTERNET_OPEN_TYPE_DIRECT,NULL,NULL,0);
if(test == NULL)
{
 		  //error
}
InternetOpenUrl(test, &quot;http://eastbourne.ea.funpic.de/test.txt&quot;, NULL, NULL, INTERNET_FLAG_RELOAD, NULL); 

}
</code></pre>
<p>Sorry aber irgendwie blicke ich das msdn net ganz...</p>
<p>das gibt InternetOpenUrl zurück? bzw. wie komme ich jetzt an die txt?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1005447</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1005447</guid><dc:creator><![CDATA[download123]]></dc:creator><pubDate>Tue, 28 Feb 2006 19:48:44 GMT</pubDate></item><item><title><![CDATA[Reply to Daten vom Server laden on Tue, 28 Feb 2006 19:49:27 GMT]]></title><description><![CDATA[<p>InternetReadFile</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1005450</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1005450</guid><dc:creator><![CDATA[so gehts weiter:]]></dc:creator><pubDate>Tue, 28 Feb 2006 19:49:27 GMT</pubDate></item><item><title><![CDATA[Reply to Daten vom Server laden on Tue, 28 Feb 2006 19:55:14 GMT]]></title><description><![CDATA[<p>Kleines Beispiel:<br />
<a href="http://www.programmershelp.co.uk/showcode.php?e=57" rel="nofollow">http://www.programmershelp.co.uk/showcode.php?e=57</a></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1005466</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1005466</guid><dc:creator><![CDATA[guenni81]]></dc:creator><pubDate>Tue, 28 Feb 2006 19:55:14 GMT</pubDate></item><item><title><![CDATA[Reply to Daten vom Server laden on Tue, 28 Feb 2006 20:09:13 GMT]]></title><description><![CDATA[<p>So</p>
<pre><code class="language-cpp">#include &lt;windows.h&gt;
#include &lt;wininet.h&gt; 

int main()
{
HINTERNET open = InternetOpen(&quot;iexplorer&quot;, INTERNET_OPEN_TYPE_DIRECT,NULL,NULL,0);
if(open == NULL)
{
 		  //error
}
HINTERNET Connection = InternetOpenUrl(open, &quot;http://eastbourne.ea.funpic.de/test.txt&quot;, NULL, NULL, INTERNET_FLAG_RELOAD, NULL); 
char lesen[1024];
char* lesen2;

InternetReadFile(Connection, lesen2, 1024, NULL);
}
</code></pre>
<p>so... mein Compiler (dev-c++ gibt aber diverse fehler aus)</p>
<blockquote>
<p>36 C:\Eigene Dateien\C++\projekte\downltest\main.cpp [Warning] passing NULL used for non-pointer converting 4 of <code>void* InternetOpenUrlA(void*, const CHAR*, const CHAR*, DWORD, DWORD, DWORD)' 36 C:\\Eigene Dateien\\C++\\projekte\\downltest\\main.cpp \[Warning\] passing NULL used for non-pointer converting 6 of</code>void* InternetOpenUrlA(void*, const CHAR*, const CHAR*, DWORD, DWORD, DWORD)'<br />
[Linker error] undefined reference to <code>InternetOpenA@20' \[Linker error\] undefined reference to</code>InternetOpenUrlA@24'<br />
[Linker error] undefined reference to `InternetReadFile@16'</p>
</blockquote>
]]></description><link>https://www.c-plusplus.net/forum/post/1005484</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1005484</guid><dc:creator><![CDATA[download123]]></dc:creator><pubDate>Tue, 28 Feb 2006 20:09:13 GMT</pubDate></item><item><title><![CDATA[Reply to Daten vom Server laden on Tue, 28 Feb 2006 20:13:02 GMT]]></title><description><![CDATA[<p>Schlechtes Beispiel... sollte besser heissen:</p>
<pre><code class="language-cpp">HINTERNET Connection = InternetOpenUrl(open, &quot;http://eastbourne.ea.funpic.de/test.txt&quot;, NULL, 0, INTERNET_FLAG_RELOAD, NULL);
</code></pre>
<p>Und füge noch die &quot;Wininet.lib&quot; als LIB Deinem Projekt hinzu...<br />
Unter VC kannst DU das auch mittels:</p>
<pre><code class="language-cpp">#pragma comment(lib, &quot;Wininet.lib&quot;)
</code></pre>
<p>machen; weiss aber nicht ob das DevC kann...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1005488</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1005488</guid><dc:creator><![CDATA[Jochen Kalmbach]]></dc:creator><pubDate>Tue, 28 Feb 2006 20:13:02 GMT</pubDate></item><item><title><![CDATA[Reply to Daten vom Server laden on Tue, 28 Feb 2006 20:24:55 GMT]]></title><description><![CDATA[<p>scheinbar kann ers nicht ... es kommt nämlich immernoch</p>
<blockquote>
<p>[Linker error] undefined reference to <code>InternetOpenA@20' \[Linker error\] undefined reference to</code>InternetOpenUrlA@24'<br />
[Linker error] undefined reference to `InternetReadFile@16'</p>
</blockquote>
<p>zurück</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1005496</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1005496</guid><dc:creator><![CDATA[download123]]></dc:creator><pubDate>Tue, 28 Feb 2006 20:24:55 GMT</pubDate></item><item><title><![CDATA[Reply to Daten vom Server laden on Tue, 28 Feb 2006 20:29:42 GMT]]></title><description><![CDATA[<p>Wininet.lib hast Du hinzugefügt, dass er gegen diese LIB linken soll?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1005500</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1005500</guid><dc:creator><![CDATA[Jochen Kalmbach]]></dc:creator><pubDate>Tue, 28 Feb 2006 20:29:42 GMT</pubDate></item><item><title><![CDATA[Reply to Daten vom Server laden on Tue, 28 Feb 2006 20:58:14 GMT]]></title><description><![CDATA[<p>wenn du damit meinst das ich die lib im projekt aufgenommen habe dann ja .. (fehler bleibt)</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1005530</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1005530</guid><dc:creator><![CDATA[download123]]></dc:creator><pubDate>Tue, 28 Feb 2006 20:58:14 GMT</pubDate></item><item><title><![CDATA[Reply to Daten vom Server laden on Tue, 28 Feb 2006 20:58:59 GMT]]></title><description><![CDATA[<p>Du solltest Dich an jemand wenden, der sich mit Deiner IDE auskennt...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1005531</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1005531</guid><dc:creator><![CDATA[Jochen Kalmbach]]></dc:creator><pubDate>Tue, 28 Feb 2006 20:58:59 GMT</pubDate></item><item><title><![CDATA[Reply to Daten vom Server laden on Tue, 28 Feb 2006 20:59:48 GMT]]></title><description><![CDATA[<p>die datei heißt dort ein wenig anders. ich glaube libwininet.a oder so.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1005533</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1005533</guid><dc:creator><![CDATA[............]]></dc:creator><pubDate>Tue, 28 Feb 2006 20:59:48 GMT</pubDate></item><item><title><![CDATA[Reply to Daten vom Server laden on Tue, 28 Feb 2006 21:04:19 GMT]]></title><description><![CDATA[<p>achso und das mit dem pragma geht meines wissens nicht. du musst die datei über die projektoptionen einbinden.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1005536</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1005536</guid><dc:creator><![CDATA[............]]></dc:creator><pubDate>Tue, 28 Feb 2006 21:04:19 GMT</pubDate></item><item><title><![CDATA[Reply to Daten vom Server laden on Tue, 28 Feb 2006 21:08:55 GMT]]></title><description><![CDATA[<p>woher nehme ich den jemand der sich mit dev-c++ auskennt</p>
<p>und es gibt die libwinnet.a ... hab sie mal dem Projekt hinzugefügt.. nix passiert</p>
<p>sorry .. aber ic hkriegs echt net gebacken <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f61e.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--disappointed_face"
      title=":-("
      alt="😞"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1005537</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1005537</guid><dc:creator><![CDATA[download123]]></dc:creator><pubDate>Tue, 28 Feb 2006 21:08:55 GMT</pubDate></item><item><title><![CDATA[Reply to Daten vom Server laden on Tue, 28 Feb 2006 21:12:19 GMT]]></title><description><![CDATA[<p>dev-c++ solltest du sowieso meiden. ist eine der schlechtesten ides. nimm codeblocks oder visual c++ 2005 express edition.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1005541</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1005541</guid><dc:creator><![CDATA[tipp]]></dc:creator><pubDate>Tue, 28 Feb 2006 21:12:19 GMT</pubDate></item><item><title><![CDATA[Reply to Daten vom Server laden on Tue, 28 Feb 2006 21:30:27 GMT]]></title><description><![CDATA[<p>okay habs mal in codeblocks gemacht...</p>
<p>aber ich habe immernoch ein problem...</p>
<p>er gibt bei dem code</p>
<pre><code class="language-cpp">#include &lt;iostream&gt;

#include &lt;windows.h&gt;
#include &lt;wininet.h&gt;
#pragma comment(lib, &quot;libwininet.a&quot;)
using namespace std;
int main()
{
/* InternetOpenUrl(
  HINTERNET hInternet,
  LPCTSTR lpszUrl,
  LPCTSTR lpszHeaders,
  DWORD dwHeadersLength,
  DWORD dwFlags,
  DWORD_PTR dwContext
);

InternetOpen(
  LPCTSTR lpszAgent,
  DWORD dwAccessType,
  LPCTSTR lpszProxyName,
  LPCTSTR lpszProxyBypass,
  DWORD dwFlags
);
 InternetReadFile(
  HINTERNET hFile,
  LPVOID lpBuffer,
  DWORD dwNumberOfBytesToRead,
  LPDWORD lpdwNumberOfBytesRead
);*/

HINTERNET open = InternetOpen(&quot;iexplorer&quot;, INTERNET_OPEN_TYPE_DIRECT,NULL,NULL,0);
if(open == NULL)
{
 		  //error
}
//HINTERNET Connection = InternetConnect(Initialize,&quot;&quot;,INTERNET_DEFAULT_HTTP_PORT, NULL,NULL,INTERNET_SERVICE_HTTP,0,0);
HINTERNET Connection = InternetOpenUrl(open, &quot;http://eastbourne.ea.funpic.de/test.txt&quot;, NULL, 0, INTERNET_FLAG_RELOAD, 0);
char lesen[1024];
char* lesen2;

InternetReadFile(Connection, lesen2, 5024, NULL);
cout &lt;&lt; lesen &lt;&lt; endl;
}
</code></pre>
<p>0 aus <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f61e.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--disappointed_face"
      title=":-("
      alt="😞"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1005553</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1005553</guid><dc:creator><![CDATA[download123]]></dc:creator><pubDate>Tue, 28 Feb 2006 21:30:27 GMT</pubDate></item><item><title><![CDATA[Reply to Daten vom Server laden on Tue, 28 Feb 2006 21:33:06 GMT]]></title><description><![CDATA[<p>du solltest auch schon was in das array schreiben lassen...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1005555</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1005555</guid><dc:creator><![CDATA[.f]]></dc:creator><pubDate>Tue, 28 Feb 2006 21:33:06 GMT</pubDate></item><item><title><![CDATA[Reply to Daten vom Server laden on Tue, 28 Feb 2006 21:34:21 GMT]]></title><description><![CDATA[<p><div class="plugin-markdown"><input type="checkbox" id="checkbox325019" /><label for="checkbox325019">Du kannst programmieren.</label></div></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1005556</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1005556</guid><dc:creator><![CDATA[x]]></dc:creator><pubDate>Tue, 28 Feb 2006 21:34:21 GMT</pubDate></item><item><title><![CDATA[Reply to Daten vom Server laden on Tue, 28 Feb 2006 21:37:59 GMT]]></title><description><![CDATA[<p>macht er das nicht hier</p>
<p>InternetReadFile(Connection, lesen, 1024, NULL);</p>
<p>schreibt er da nicht in lesen?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1005558</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1005558</guid><dc:creator><![CDATA[download123]]></dc:creator><pubDate>Tue, 28 Feb 2006 21:37:59 GMT</pubDate></item><item><title><![CDATA[Reply to Daten vom Server laden on Tue, 28 Feb 2006 21:39:06 GMT]]></title><description><![CDATA[<p>das steht da in deinem quellcode nicht.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1005560</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1005560</guid><dc:creator><![CDATA[.f]]></dc:creator><pubDate>Tue, 28 Feb 2006 21:39:06 GMT</pubDate></item><item><title><![CDATA[Reply to Daten vom Server laden on Wed, 01 Mar 2006 13:00:43 GMT]]></title><description><![CDATA[<p>oh ist das peinlich <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f603.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--grinning_face_with_big_eyes"
      title=":D"
      alt="😃"
    /></p>
<p>*im boden versink* (jaja im quellcode müsste der zeiger zugewiesen werden)</p>
<p>okay aber ich habe immernoch ein prob.</p>
<pre><code class="language-cpp">#include &lt;iostream&gt;

#include &lt;windows.h&gt;
#include &lt;wininet.h&gt;
#pragma comment(lib, &quot;libwininet.a&quot;)
using namespace std;
int main()
{
/* InternetOpenUrl(
  HINTERNET hInternet,
  LPCTSTR lpszUrl,
  LPCTSTR lpszHeaders,
  DWORD dwHeadersLength,
  DWORD dwFlags,
  DWORD_PTR dwContext
);

InternetOpen(
  LPCTSTR lpszAgent,
  DWORD dwAccessType,
  LPCTSTR lpszProxyName,
  LPCTSTR lpszProxyBypass,
  DWORD dwFlags
);
 InternetReadFile(
  HINTERNET hFile,
  LPVOID lpBuffer,
  DWORD dwNumberOfBytesToRead,
  LPDWORD lpdwNumberOfBytesRead
);*/

HINTERNET open = InternetOpen(&quot;iexplorer&quot;, INTERNET_OPEN_TYPE_DIRECT,NULL,NULL,0);
if(open == NULL)
{
 		  //error
}
//HINTERNET Connection = InternetConnect(Initialize,&quot;&quot;,INTERNET_DEFAULT_HTTP_PORT, NULL,NULL,INTERNET_SERVICE_HTTP,0,0);
HINTERNET Connection = InternetOpenUrl(open, &quot;http://eastbourne.ea.funpic.de/test.txt&quot;, NULL, 0, INTERNET_FLAG_RELOAD, 0);
char lesen[123];

InternetReadFile(Connection, lesen, 10024, NULL);

cout &lt;&lt; &quot;;&quot; &lt;&lt; lesen  &lt;&lt; &quot;;&quot; &lt;&lt; endl;
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1005566</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1005566</guid><dc:creator><![CDATA[download123]]></dc:creator><pubDate>Wed, 01 Mar 2006 13:00:43 GMT</pubDate></item><item><title><![CDATA[Reply to Daten vom Server laden on Tue, 28 Feb 2006 23:14:23 GMT]]></title><description><![CDATA[<p>so einen thread hast du schonmal aufgemacht? bist du vergesslich?</p>
<p><a href="http://www.c-plusplus.net/forum/viewtopic-var-t-is-135867-and-highlight-is-.html" rel="nofollow">http://www.c-plusplus.net/forum/viewtopic-var-t-is-135867-and-highlight-is-.html</a></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1005591</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1005591</guid><dc:creator><![CDATA[zwischenfrage]]></dc:creator><pubDate>Tue, 28 Feb 2006 23:14:23 GMT</pubDate></item><item><title><![CDATA[Reply to Daten vom Server laden on Wed, 01 Mar 2006 13:02:38 GMT]]></title><description><![CDATA[<p>@zwischenfrage<br />
siehst du ein das ich ans ziel gekommen bin?</p>
<p>ich bin steckengeblieben, und wollte das thema jetzt nochmal angehen</p>
<p>(und ein internet zugriff funktioniert ja schon )</p>
<p>nur wird immernochnicht das richtige ausgegeben *verzweifel*</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1005906</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1005906</guid><dc:creator><![CDATA[download123]]></dc:creator><pubDate>Wed, 01 Mar 2006 13:02:38 GMT</pubDate></item><item><title><![CDATA[Reply to Daten vom Server laden on Wed, 01 Mar 2006 14:16:40 GMT]]></title><description><![CDATA[<p>versteh ich nicht. im alten thread hattest du nur linker-probleme die du jetzt ja lösen könntest.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1005965</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1005965</guid><dc:creator><![CDATA[zwischenfrage]]></dc:creator><pubDate>Wed, 01 Mar 2006 14:16:40 GMT</pubDate></item><item><title><![CDATA[Reply to Daten vom Server laden on Wed, 01 Mar 2006 16:46:57 GMT]]></title><description><![CDATA[<p>ich kann aber den alten code nicht wirklich nachvolzeihen, den hier allerdings schon, deshalb: kannst du mir nicht sagen was falsch ist?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1006069</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1006069</guid><dc:creator><![CDATA[download123]]></dc:creator><pubDate>Wed, 01 Mar 2006 16:46:57 GMT</pubDate></item></channel></rss>