<?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[Umstieg von FastNet zu Indy = Probs]]></title><description><![CDATA[<p>Moin,</p>
<p>da ich Indy Newbie bin (heute angefangen damit rum zu spielen) ist das ne Wissenschaft für sich für mich <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /><br />
Also ich will von einem POP3 meine Emails abholen, will aber partu nicht funktionieren.</p>
<pre><code class="language-cpp">IdPOP31-&gt;Connect();
    IdPOP31-&gt;CheckMessages();
    IdPOP31-&gt;RetrieveMailBoxSize();

    ListView1-&gt;SelectAll();
    TListItem *InsertItem =
    ListView1-&gt;Items-&gt;Insert(ListView1-&gt;Selected-&gt;Index +1);

    InsertItem-&gt;Caption = IdMessage1-&gt;From-&gt;Text;
    InsertItem-&gt;SubItems-&gt;Add(IdMessage1-&gt;Subject);
</code></pre>
<p>Scheinbar passiert nichts. keine fehlermeldung, keine emails, nichts *g*<br />
Connectet ist das Programm, hab ich schon getestet.<br />
Da ich durch suchen im Netz und hier im forum keine antwort gefunden hab muss ich jetzt halt fragen. Was ist da los?</p>
<p>Hoffe es erbarmt sich einer mir zu helfen <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f644.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--face_with_rolling_eyes"
      title=":rolling_eyes:"
      alt="🙄"
    /></p>
<p>Carpe Noctem</p>
<p>Toadie</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/9738/umstieg-von-fastnet-zu-indy-probs</link><generator>RSS for Node</generator><lastBuildDate>Tue, 04 Aug 2026 07:52:00 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/9738.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 23 Dec 2002 18:39:00 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Umstieg von FastNet zu Indy = Probs on Mon, 23 Dec 2002 18:39:00 GMT]]></title><description><![CDATA[<p>Moin,</p>
<p>da ich Indy Newbie bin (heute angefangen damit rum zu spielen) ist das ne Wissenschaft für sich für mich <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /><br />
Also ich will von einem POP3 meine Emails abholen, will aber partu nicht funktionieren.</p>
<pre><code class="language-cpp">IdPOP31-&gt;Connect();
    IdPOP31-&gt;CheckMessages();
    IdPOP31-&gt;RetrieveMailBoxSize();

    ListView1-&gt;SelectAll();
    TListItem *InsertItem =
    ListView1-&gt;Items-&gt;Insert(ListView1-&gt;Selected-&gt;Index +1);

    InsertItem-&gt;Caption = IdMessage1-&gt;From-&gt;Text;
    InsertItem-&gt;SubItems-&gt;Add(IdMessage1-&gt;Subject);
</code></pre>
<p>Scheinbar passiert nichts. keine fehlermeldung, keine emails, nichts *g*<br />
Connectet ist das Programm, hab ich schon getestet.<br />
Da ich durch suchen im Netz und hier im forum keine antwort gefunden hab muss ich jetzt halt fragen. Was ist da los?</p>
<p>Hoffe es erbarmt sich einer mir zu helfen <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f644.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--face_with_rolling_eyes"
      title=":rolling_eyes:"
      alt="🙄"
    /></p>
<p>Carpe Noctem</p>
<p>Toadie</p>
]]></description><link>https://www.c-plusplus.net/forum/post/49705</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/49705</guid><dc:creator><![CDATA[Toadie]]></dc:creator><pubDate>Mon, 23 Dec 2002 18:39:00 GMT</pubDate></item><item><title><![CDATA[Reply to Umstieg von FastNet zu Indy = Probs on Mon, 23 Dec 2002 18:52:00 GMT]]></title><description><![CDATA[<p>Du hast doch noch gar keine Nachrichten abgeholt (Retrieve)!?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/49706</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/49706</guid><dc:creator><![CDATA[Jansen]]></dc:creator><pubDate>Mon, 23 Dec 2002 18:52:00 GMT</pubDate></item><item><title><![CDATA[Reply to Umstieg von FastNet zu Indy = Probs on Mon, 23 Dec 2002 19:01:00 GMT]]></title><description><![CDATA[<p>ups okay hab das jetzt so gemacht</p>
<p>[cpp]<br />
IdPOP31-&gt;Connect();<br />
IdPOP31-&gt;CheckMessages();<br />
IdPOP31-&gt;RetrieveMailBoxSize();<br />
<strong>IdPOP31-&gt;Retrieve(1, Message);</strong><br />
ListView1-&gt;SelectAll();<br />
TListItem *InsertItem =<br />
ListView1-&gt;Items-&gt;Insert(ListView1-&gt;Selected-&gt;Index +1);</p>
<p>InsertItem-&gt;Caption = IdMessage1-&gt;From-&gt;Text;<br />
InsertItem-&gt;SubItems-&gt;Add(IdMessage1-&gt;Subject);[/cpp]</p>
<p>allerdings läd der nur eine email runter obwohl mehr aufem server sind, liegt das an der 1 und wen ja wie änder ich das?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/49707</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/49707</guid><dc:creator><![CDATA[Toadie]]></dc:creator><pubDate>Mon, 23 Dec 2002 19:01:00 GMT</pubDate></item><item><title><![CDATA[Reply to Umstieg von FastNet zu Indy = Probs on Mon, 23 Dec 2002 19:26:00 GMT]]></title><description><![CDATA[<p>Hi</p>
<p>Nur so ein Gedanke:</p>
<pre><code class="language-cpp">IdPOP31-&gt;Retrieve( IdPOP31-&gt;CheckMessages, Message);

//oder vieleicht

while (IdPOP31-&gt;Retrieve( 1, Message))
{
...
}
</code></pre>
<p>mfg pera</p>
]]></description><link>https://www.c-plusplus.net/forum/post/49708</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/49708</guid><dc:creator><![CDATA[pera]]></dc:creator><pubDate>Mon, 23 Dec 2002 19:26:00 GMT</pubDate></item><item><title><![CDATA[Reply to Umstieg von FastNet zu Indy = Probs on Mon, 23 Dec 2002 19:42:00 GMT]]></title><description><![CDATA[<p>geh nicht, kommen diese 2 Meldungen</p>
<p>[C++ Error] Unit1.cpp(23): E2034 Cannot convert 'int (_fastcall * (_closure )())()' to 'int'</p>
<p>[C++ Error] Unit1.cpp(23): E2342 Type mismatch in parameter 'MsgNum' (wanted 'const int', got 'void')</p>
<p>das mit while hab ich nicht getest weil ich nicht genau weiß worauf du hinauswillst.</p>
<p>ich renn heute wohl mit einem brett vorm kopf rum</p>
]]></description><link>https://www.c-plusplus.net/forum/post/49709</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/49709</guid><dc:creator><![CDATA[Toadie]]></dc:creator><pubDate>Mon, 23 Dec 2002 19:42:00 GMT</pubDate></item><item><title><![CDATA[Reply to Umstieg von FastNet zu Indy = Probs on Mon, 23 Dec 2002 19:51:00 GMT]]></title><description><![CDATA[<p>ok habs jetzt so</p>
<pre><code class="language-cpp">IdPOP31-&gt;Retrieve( IdPOP31-&gt;CheckMessages(), Message);
</code></pre>
<p>Compiliert auch, aber läd immer noch nur eine Email runter</p>
]]></description><link>https://www.c-plusplus.net/forum/post/49710</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/49710</guid><dc:creator><![CDATA[Toadie]]></dc:creator><pubDate>Mon, 23 Dec 2002 19:51:00 GMT</pubDate></item><item><title><![CDATA[Reply to Umstieg von FastNet zu Indy = Probs on Mon, 23 Dec 2002 21:17:00 GMT]]></title><description><![CDATA[<p>Ich gehe davon aus, dass du die Nachrichten nacheinander &quot;retrieven&quot; musst. Üblicherweise per Schleife, den Zähler (d.h. die Anzahl der Nachrichten) bekommst du ja über CheckMessages.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/49711</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/49711</guid><dc:creator><![CDATA[Jansen]]></dc:creator><pubDate>Mon, 23 Dec 2002 21:17:00 GMT</pubDate></item><item><title><![CDATA[Reply to Umstieg von FastNet zu Indy = Probs on Mon, 23 Dec 2002 22:06:00 GMT]]></title><description><![CDATA[<p>jo logisch.<br />
leider hab ichs heut net mit der logik, produziere nur endlosschleifen.<br />
hoffenltich heuts morgen hin</p>
<pre><code class="language-cpp">do
    {
        ListView1-&gt;SelectAll();
        TListItem *InsertItem =
        ListView1-&gt;Items-&gt;Insert(ListView1-&gt;Selected-&gt;Index +1);

        InsertItem-&gt;Caption = Message-&gt;From-&gt;Text;
        InsertItem-&gt;SubItems-&gt;Add(Message-&gt;Subject);
    }
    while(POP3-&gt;Retrieve(POP3-&gt;CheckMessages(), Message));
</code></pre>
<p>Frohe Weihnachten</p>
]]></description><link>https://www.c-plusplus.net/forum/post/49712</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/49712</guid><dc:creator><![CDATA[Toadie]]></dc:creator><pubDate>Mon, 23 Dec 2002 22:06:00 GMT</pubDate></item><item><title><![CDATA[Reply to Umstieg von FastNet zu Indy = Probs on Mon, 23 Dec 2002 22:18:00 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">int mcount = POP3-&gt;CheckMessages();
for (int i = 0; i &lt; mcount; i++)
{
  POP3-&gt;Retrieve(i, Message);
  ...
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/49713</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/49713</guid><dc:creator><![CDATA[Jansen]]></dc:creator><pubDate>Mon, 23 Dec 2002 22:18:00 GMT</pubDate></item><item><title><![CDATA[Reply to Umstieg von FastNet zu Indy = Probs on Mon, 23 Dec 2002 22:41:00 GMT]]></title><description><![CDATA[<p>ok dein wink mit dem zaunpfal war schon mal gut denk ich. denoch wird immer noch nur eine mail runter geladen</p>
<pre><code class="language-cpp">POP3-&gt;Connect();
    POP3-&gt;CheckMessages();
    POP3-&gt;RetrieveMailBoxSize();
    ListView1-&gt;SelectAll();
    int mcount = POP3-&gt;CheckMessages();
    for(int i = 0; i &lt; mcount ; i++)
    {
        POP3-&gt;Retrieve(i, Message);

        TListItem *InsertItem =
        ListView1-&gt;Items-&gt;Insert(ListView1-&gt;Selected-&gt;Index +i);

        InsertItem-&gt;Caption = Message-&gt;From-&gt;Text;
        InsertItem-&gt;SubItems-&gt;Add(Message-&gt;Subject);
    }

    POP3-&gt;Disconnect();
</code></pre>
<p>kannst mir gerne mit dem zaunpfahl schlagen *g*</p>
]]></description><link>https://www.c-plusplus.net/forum/post/49714</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/49714</guid><dc:creator><![CDATA[Toadie]]></dc:creator><pubDate>Mon, 23 Dec 2002 22:41:00 GMT</pubDate></item><item><title><![CDATA[Reply to Umstieg von FastNet zu Indy = Probs on Mon, 23 Dec 2002 22:43:00 GMT]]></title><description><![CDATA[<p>PS: manchmal wir die selbe mail doppelt angezeigt <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f615.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--confused_face"
      title=":confused:"
      alt="😕"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/49715</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/49715</guid><dc:creator><![CDATA[Toadie]]></dc:creator><pubDate>Mon, 23 Dec 2002 22:43:00 GMT</pubDate></item><item><title><![CDATA[Reply to Umstieg von FastNet zu Indy = Probs on Tue, 24 Dec 2002 08:27:00 GMT]]></title><description><![CDATA[<p>Habe jetzt und die nächsten Tage keine Zeit, das zu testen, deshalb zumindest der Hinweis auf die Beipielprojekte, die du auf der Indy-Downloadseite findest. Dort gibt es auch mehrere Mail-Clients, und ja, der BCB kann Pascal-Dateien anzeigen.</p>
<p>FF</p>
]]></description><link>https://www.c-plusplus.net/forum/post/49716</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/49716</guid><dc:creator><![CDATA[Jansen]]></dc:creator><pubDate>Tue, 24 Dec 2002 08:27:00 GMT</pubDate></item><item><title><![CDATA[Reply to Umstieg von FastNet zu Indy = Probs on Tue, 24 Dec 2002 11:27:00 GMT]]></title><description><![CDATA[<p>das ist mir bekannt, die hab ich runtergeladen. naja werd ich sie mir nochmal anschauen, vielleicht ha ich was über sehen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/49717</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/49717</guid><dc:creator><![CDATA[Toadie]]></dc:creator><pubDate>Tue, 24 Dec 2002 11:27:00 GMT</pubDate></item><item><title><![CDATA[Reply to Umstieg von FastNet zu Indy = Probs on Tue, 24 Dec 2002 16:09:00 GMT]]></title><description><![CDATA[<p>Nachdem abholen und ausgeben der Daten mußt Du ein</p>
<pre><code class="language-cpp">Msg-&gt;Clear();
</code></pre>
<p>einfügen, dann geht es einwandfrei.</p>
<p>Mfg und Frohe Weihnachten wünscht allen<br />
Andidreas</p>
]]></description><link>https://www.c-plusplus.net/forum/post/49718</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/49718</guid><dc:creator><![CDATA[Andidreas]]></dc:creator><pubDate>Tue, 24 Dec 2002 16:09:00 GMT</pubDate></item><item><title><![CDATA[Reply to Umstieg von FastNet zu Indy = Probs on Tue, 24 Dec 2002 17:21:00 GMT]]></title><description><![CDATA[<p>ne sorry geht auch nciht. könnte das an der indy Version 8 liegen?<br />
verstehs net mehr <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f615.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--confused_face"
      title=":confused:"
      alt="😕"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/49719</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/49719</guid><dc:creator><![CDATA[Toadie]]></dc:creator><pubDate>Tue, 24 Dec 2002 17:21:00 GMT</pubDate></item><item><title><![CDATA[Reply to Umstieg von FastNet zu Indy = Probs on Tue, 24 Dec 2002 18:08:00 GMT]]></title><description><![CDATA[<p>Weiß ich nicht hab mir vorhin die 9x runtergeladen.<br />
So siehts bei mir aus:</p>
<pre><code class="language-cpp">pop-&gt;Connect(0);
 int NumMessages = pop-&gt;CheckMessages();
 for (; NumMessages &gt; 0; NumMessages--)
     {
     pop-&gt;Retrieve(NumMessages, Msg);
     Memo1-&gt;Lines-&gt;Add(Msg-&gt;From-&gt;Text + &quot; &quot; + Msg-&gt;Subject);
     Msg-&gt;Clear();
     }
 pop-&gt;Disconnect();
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/49720</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/49720</guid><dc:creator><![CDATA[Andidreas]]></dc:creator><pubDate>Tue, 24 Dec 2002 18:08:00 GMT</pubDate></item><item><title><![CDATA[Reply to Umstieg von FastNet zu Indy = Probs on Tue, 24 Dec 2002 19:05:00 GMT]]></title><description><![CDATA[<p>ne also das funzt absolut garnet bei mir.<br />
erster fehler ist bei</p>
<pre><code class="language-cpp">pop-&gt;Connect(0);
</code></pre>
<p>wegen der 0, wenn ich die raus mache gehts dann kommt aber eine Fehlermeldung, irgendwas mit Gracefully disconnectet...</p>
<p>ist doch kacke <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/49721</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/49721</guid><dc:creator><![CDATA[Toadie]]></dc:creator><pubDate>Tue, 24 Dec 2002 19:05:00 GMT</pubDate></item><item><title><![CDATA[Reply to Umstieg von FastNet zu Indy = Probs on Tue, 24 Dec 2002 22:31:00 GMT]]></title><description><![CDATA[<p>Wenn ich die 0 nicht setze meckert er über zuwenige Parameter. Aber wie gesagt ich hab die 9er Version. Solltest Du Dir vielleicht auch mal runterladen.</p>
<p>Andidreas</p>
]]></description><link>https://www.c-plusplus.net/forum/post/49722</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/49722</guid><dc:creator><![CDATA[Andidreas]]></dc:creator><pubDate>Tue, 24 Dec 2002 22:31:00 GMT</pubDate></item><item><title><![CDATA[Reply to Umstieg von FastNet zu Indy = Probs on Tue, 24 Dec 2002 23:16:00 GMT]]></title><description><![CDATA[<p>Nö, das ist keine Fehlermeldung, nur ne Exception. Versuch doch mal &quot;Gracefully disconnected&quot; zu übersetzen! Dann merkst du, es ist alles ok.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/49723</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/49723</guid><dc:creator><![CDATA[Eßer]]></dc:creator><pubDate>Tue, 24 Dec 2002 23:16:00 GMT</pubDate></item><item><title><![CDATA[Reply to Umstieg von FastNet zu Indy = Probs on Tue, 24 Dec 2002 23:41:00 GMT]]></title><description><![CDATA[<p>wieso beendet er das programm wenn alles ok ist?<br />
bei mir gehts net mit 0, mekert es wären zu viele parameter.</p>
<p>indy 9 runtergeladen, installation peil ich net..war ja klar</p>
]]></description><link>https://www.c-plusplus.net/forum/post/49724</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/49724</guid><dc:creator><![CDATA[Toadie]]></dc:creator><pubDate>Tue, 24 Dec 2002 23:41:00 GMT</pubDate></item><item><title><![CDATA[Reply to Umstieg von FastNet zu Indy = Probs on Tue, 24 Dec 2002 23:55:00 GMT]]></title><description><![CDATA[<p>so habs hinbekommen!!!</p>
<pre><code class="language-cpp">POP3-&gt;Connect();
    POP3-&gt;CheckMessages();
    POP3-&gt;RetrieveMailBoxSize();

    int mcount = POP3-&gt;CheckMessages();
    if(mcount &gt; 0)
    {
    for (; mcount &gt; 0; mcount--)
    {
        POP3-&gt;Retrieve(mcount, Message);

        TListItem *InsertItem =
        ListView1-&gt;Items-&gt;Add();

        InsertItem-&gt;Caption = Message-&gt;From-&gt;Text;
        InsertItem-&gt;SubItems-&gt;Add(Message-&gt;Subject);
        InsertItem-&gt;SubItems-&gt;Add(Message-&gt;Date);
        Message-&gt;Clear();
    }
    }

    POP3-&gt;Disconnect();
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/49725</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/49725</guid><dc:creator><![CDATA[Toadie]]></dc:creator><pubDate>Tue, 24 Dec 2002 23:55:00 GMT</pubDate></item><item><title><![CDATA[Reply to Umstieg von FastNet zu Indy = Probs on Wed, 25 Dec 2002 14:04:00 GMT]]></title><description><![CDATA[<p>Hi</p>
<p>Du kannst unter Menüpunkt Tools-&gt;Debugger Options-&gt;Language Exceptions-&gt;Add EIdConnClosedGracefully einfügen, damit die IDE nicht mehr auf diese Exception reagiert, abfangen kannst du sie weiterhin mit try/catch.</p>
<p>mfg pera</p>
]]></description><link>https://www.c-plusplus.net/forum/post/49726</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/49726</guid><dc:creator><![CDATA[pera]]></dc:creator><pubDate>Wed, 25 Dec 2002 14:04:00 GMT</pubDate></item><item><title><![CDATA[Reply to Umstieg von FastNet zu Indy = Probs on Wed, 25 Dec 2002 14:27:00 GMT]]></title><description><![CDATA[<p>danke, ist aber nicht mehr nötig da es ja jetzt wunderbar klappt!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/49727</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/49727</guid><dc:creator><![CDATA[Toadie]]></dc:creator><pubDate>Wed, 25 Dec 2002 14:27:00 GMT</pubDate></item><item><title><![CDATA[Reply to Umstieg von FastNet zu Indy = Probs on Thu, 26 Dec 2002 18:08:00 GMT]]></title><description><![CDATA[<p>Welche BCB-Version benutzt Du? Wenn BCB 6 dann mußt Du bevor Du Indy 9 einbindest die im BCB 6 vorhandene Indy Version deinstallieren (über Setup CD). Dann kansst Du die neue Version einbinden. Im Verzeichnispfad muß Indy vor RTL stehen, sonst gibt es Probleme.</p>
<p>Mfg und Guten Rutsch<br />
Andidreas</p>
]]></description><link>https://www.c-plusplus.net/forum/post/49728</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/49728</guid><dc:creator><![CDATA[Andidreas]]></dc:creator><pubDate>Thu, 26 Dec 2002 18:08:00 GMT</pubDate></item><item><title><![CDATA[Reply to Umstieg von FastNet zu Indy = Probs on Thu, 26 Dec 2002 18:42:00 GMT]]></title><description><![CDATA[<p>Danke für den hinweiß, werd ich irgendwann mal probieren. Funzt ja jetzt mit der alten Version, also lass ichs erstmal <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face"
      title=":)"
      alt="🙂"
    /></p>
<p>ebenfalls guten rutsch!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/49729</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/49729</guid><dc:creator><![CDATA[Toadie]]></dc:creator><pubDate>Thu, 26 Dec 2002 18:42:00 GMT</pubDate></item><item><title><![CDATA[Reply to Umstieg von FastNet zu Indy = Probs on Sun, 11 Dec 2005 16:06:56 GMT]]></title><description><![CDATA[<p>Hab au ne Anwendung bei der ich die emails abrufen will,<br />
allerdings bekomm ich bei jedem Email-Account den ich angebe (z.b <a href="http://pop3.web.de" rel="nofollow">pop3.web.de</a>) immer den Fehler,dass die Funktion CheckMessages(),<br />
die ja eigentlich die Anzahl der Mails in meinem Acc zurückgeben sollte, irgendeinen String zurückgibt (im oberen Beispiel wäre das &quot;<a href="http://web.de" rel="nofollow">web.de</a>&quot;) und da krieg ich immer den Fehler es sei kein gültiger int-wert...</p>
<p>Woran kann das liegen?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/939629</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/939629</guid><dc:creator><![CDATA[Kang]]></dc:creator><pubDate>Sun, 11 Dec 2005 16:06:56 GMT</pubDate></item></channel></rss>