<?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[C++ Konsolenanwenung in Forms umschreiben]]></title><description><![CDATA[<p>Hallo,</p>
<p>Habe ein kleines Konsolenprogramm erstellt (Echt nur minimal und laienhaft).<br />
Ich würde nun jedoch gerne die Konsole im Hintergrund wegbekommen. Das heißt, die Konsolenanwendung zu einer Windowsanwendung exportieren. Doch wohin muss ich die C++ Datei hinkopieren wenn ich einen frame erstellt habe?</p>
<p>Wäre sehr verbunden.</p>
<pre><code class="language-cpp">/*
  Name: Sebastian Schon     
  Copyright: Sebastian Schon    
  Author: Sebastian Schon
  Date: 18.08.10 06:54
  Description: Fortune Deluxe 2000
*/

#include &lt;iostream&gt; 
#include &lt;ctime&gt; 
#include &lt;windows.h&gt; 
#include &lt;conio.h&gt; 
using std::cout; 
using std::cin; 
using std::endl;

void play_game(); 

int main() 
{ 
    cout&lt;&lt;&quot;Herzlich Wilkommen bei Fortune Deluxe 2000.&quot;&lt;&lt;endl;
Sleep(2000);
cout&lt;&lt;&quot;Mit etwas Glueck schaffen sie es ins Finale und gewinnen 1 Cent.&quot;&lt;&lt;endl;
Sleep(2000);
cout&lt;&lt;&quot;Bereit?&quot;&lt;&lt;endl;
getch();

//SPIEL1__________________________________1_________________________SPIEL 1__________________!!!___________________1________SPIEL1_____1___________1______________
//SPIEL1__________________________________1_________________________SPIEL 1__________________!!!___________________1________SPIEL1_____1___________1______________
//SPIEL1__________________________________1_________________________SPIEL 1__________________!!!___________________1________SPIEL1_____1___________1______________
//SPIEL1__________________________________1_________________________SPIEL 1__________________!!!__________________1________SPIEL1_____1___________1______________

    srand( time(NULL) ); 
    bool new_game = true; 

    while( new_game ) 
    { 
        new_game = false; 
        play_game(); 

        int input; 
        cout &lt;&lt; &quot;Wenn sie komplett von vorne spielen moechten, geben Sie 1 ein.&quot;&lt;&lt; endl; 
        cin &gt;&gt; input; 
        cout &lt;&lt; endl &lt;&lt; endl; 

        if( input == 1 ) 
            new_game = true; 

    } 

} 

void play_game() 
{ 
    int trials_left = 3; // anzahl versuche 

    while( trials_left &gt; 0 ) 
    { 
        int wanted_number = rand() % 3 + 1; // zufallszahl wird erzeugt 
        int chosen_number; 
        int weiter;
        cout &lt;&lt; &quot;Waehlen Sie eine Zahl zwischen 1 und 3: &quot;; 
        cin &gt;&gt; chosen_number; 

        // richtige zahl 
        if( wanted_number == chosen_number ) 
        { 
            int chosen_frage;
            int wanted_frage = 1;
            cout &lt;&lt; &quot;Ihre Zahl:&quot;&lt;&lt;chosen_number&lt;&lt;&quot; | Die Zahl des Computers: &quot;&lt;&lt;wanted_number&lt;&lt;&quot;. Herzlichen Glueckwunsch.\n Sie haben auf die richtige Zahl getippt.\n Sie sind nun eine Runde weiter!&quot;&lt;&lt;endl; 
            Sleep(5000);
            system(&quot;cls&quot;);

            // SPIEL 2______________________SPIEL2__________________________!||||||!____________________________SPIEL2___________________________________SPIEL2___________________
            // SPIEL 2______________________SPIEL2__________________________SPIEL2____________________________SPIEL2___________________________________SPIEL2___________________
            // SPIEL 2______________________SPIEL2__________________________SPIEL2____________________________SPIEL2___________________________________SPIEL2___________________
            // SPIEL 2______________________SPIEL2__________________________SPIEL2____________________________SPIEL2___________________________________SPIEL2___________________

            cout&lt;&lt;&quot;Hier sind sie nun im Spiel 2 angelangt.\n Hierbei handelt es sich um eine Wissensfrage.\n Sie haben nur einen einzigen Versuch.\n Bereit?&quot;&lt;&lt;endl;
            getch();
            cout&lt;&lt;&quot;Ok, hier ist sie:\n In welchem Jahr erschien die Programmiersprache C++?&quot;&lt;&lt;endl;
             Sleep(1000);
            cout&lt;&lt;&quot;1.) 1979&quot;&lt;&lt;endl;
             Sleep(1000);
            cout&lt;&lt;&quot;2.) 1999&quot;&lt;&lt;endl;
            Sleep(1000);
            cout&lt;&lt;&quot;3.) 1967&quot;&lt;&lt;endl;
            cin&gt;&gt;chosen_frage;

            // RICHTIG

            if ( wanted_frage == chosen_frage )

            {
                             cout&lt;&lt;&quot;RICHTIG! Die Programmiersprache C++ wurde im Jahre 1979 von \n Bjarne Stroustrup bei AT&amp;T als Erweiterung der Programmiersprache C entwickelt. &quot;&lt;&lt;endl;
                            break;
                             }

            // FALSCH

            else 
            { 
            cout &lt;&lt; &quot;Sie haben das Spiel verloren.\n Fangen sie bitte wieder von vorne an!&quot; &lt;&lt; endl &lt;&lt; endl &lt;&lt; endl; 
            break;
        } 

            break;

        } 

        // falsche zahl, neuer versuch 
        else if( trials_left &gt; 0 ) 
        { 
            cout &lt;&lt; &quot;Ihre Zahl:&quot;&lt;&lt;chosen_number&lt;&lt;&quot; | Die Zahl des Computers: &quot;&lt;&lt;wanted_number&lt;&lt;&quot;. Leider die falsche Zahl.\n Waehlen Sie bitte eine neue Zahl&quot; &lt;&lt; endl &lt;&lt; endl; 
            --trials_left; 

        } 

        else 
        { 
            cout &lt;&lt; &quot;Sie haben das Spiel verloren&quot; &lt;&lt; endl &lt;&lt; endl &lt;&lt; endl; 
        } 

    } 

}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/topic/272610/c-konsolenanwenung-in-forms-umschreiben</link><generator>RSS for Node</generator><lastBuildDate>Fri, 28 Aug 2026 20:25:23 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/272610.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 21 Aug 2010 10:21:46 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to C++ Konsolenanwenung in Forms umschreiben on Sat, 21 Aug 2010 10:21:46 GMT]]></title><description><![CDATA[<p>Hallo,</p>
<p>Habe ein kleines Konsolenprogramm erstellt (Echt nur minimal und laienhaft).<br />
Ich würde nun jedoch gerne die Konsole im Hintergrund wegbekommen. Das heißt, die Konsolenanwendung zu einer Windowsanwendung exportieren. Doch wohin muss ich die C++ Datei hinkopieren wenn ich einen frame erstellt habe?</p>
<p>Wäre sehr verbunden.</p>
<pre><code class="language-cpp">/*
  Name: Sebastian Schon     
  Copyright: Sebastian Schon    
  Author: Sebastian Schon
  Date: 18.08.10 06:54
  Description: Fortune Deluxe 2000
*/

#include &lt;iostream&gt; 
#include &lt;ctime&gt; 
#include &lt;windows.h&gt; 
#include &lt;conio.h&gt; 
using std::cout; 
using std::cin; 
using std::endl;

void play_game(); 

int main() 
{ 
    cout&lt;&lt;&quot;Herzlich Wilkommen bei Fortune Deluxe 2000.&quot;&lt;&lt;endl;
Sleep(2000);
cout&lt;&lt;&quot;Mit etwas Glueck schaffen sie es ins Finale und gewinnen 1 Cent.&quot;&lt;&lt;endl;
Sleep(2000);
cout&lt;&lt;&quot;Bereit?&quot;&lt;&lt;endl;
getch();

//SPIEL1__________________________________1_________________________SPIEL 1__________________!!!___________________1________SPIEL1_____1___________1______________
//SPIEL1__________________________________1_________________________SPIEL 1__________________!!!___________________1________SPIEL1_____1___________1______________
//SPIEL1__________________________________1_________________________SPIEL 1__________________!!!___________________1________SPIEL1_____1___________1______________
//SPIEL1__________________________________1_________________________SPIEL 1__________________!!!__________________1________SPIEL1_____1___________1______________

    srand( time(NULL) ); 
    bool new_game = true; 

    while( new_game ) 
    { 
        new_game = false; 
        play_game(); 

        int input; 
        cout &lt;&lt; &quot;Wenn sie komplett von vorne spielen moechten, geben Sie 1 ein.&quot;&lt;&lt; endl; 
        cin &gt;&gt; input; 
        cout &lt;&lt; endl &lt;&lt; endl; 

        if( input == 1 ) 
            new_game = true; 

    } 

} 

void play_game() 
{ 
    int trials_left = 3; // anzahl versuche 

    while( trials_left &gt; 0 ) 
    { 
        int wanted_number = rand() % 3 + 1; // zufallszahl wird erzeugt 
        int chosen_number; 
        int weiter;
        cout &lt;&lt; &quot;Waehlen Sie eine Zahl zwischen 1 und 3: &quot;; 
        cin &gt;&gt; chosen_number; 

        // richtige zahl 
        if( wanted_number == chosen_number ) 
        { 
            int chosen_frage;
            int wanted_frage = 1;
            cout &lt;&lt; &quot;Ihre Zahl:&quot;&lt;&lt;chosen_number&lt;&lt;&quot; | Die Zahl des Computers: &quot;&lt;&lt;wanted_number&lt;&lt;&quot;. Herzlichen Glueckwunsch.\n Sie haben auf die richtige Zahl getippt.\n Sie sind nun eine Runde weiter!&quot;&lt;&lt;endl; 
            Sleep(5000);
            system(&quot;cls&quot;);

            // SPIEL 2______________________SPIEL2__________________________!||||||!____________________________SPIEL2___________________________________SPIEL2___________________
            // SPIEL 2______________________SPIEL2__________________________SPIEL2____________________________SPIEL2___________________________________SPIEL2___________________
            // SPIEL 2______________________SPIEL2__________________________SPIEL2____________________________SPIEL2___________________________________SPIEL2___________________
            // SPIEL 2______________________SPIEL2__________________________SPIEL2____________________________SPIEL2___________________________________SPIEL2___________________

            cout&lt;&lt;&quot;Hier sind sie nun im Spiel 2 angelangt.\n Hierbei handelt es sich um eine Wissensfrage.\n Sie haben nur einen einzigen Versuch.\n Bereit?&quot;&lt;&lt;endl;
            getch();
            cout&lt;&lt;&quot;Ok, hier ist sie:\n In welchem Jahr erschien die Programmiersprache C++?&quot;&lt;&lt;endl;
             Sleep(1000);
            cout&lt;&lt;&quot;1.) 1979&quot;&lt;&lt;endl;
             Sleep(1000);
            cout&lt;&lt;&quot;2.) 1999&quot;&lt;&lt;endl;
            Sleep(1000);
            cout&lt;&lt;&quot;3.) 1967&quot;&lt;&lt;endl;
            cin&gt;&gt;chosen_frage;

            // RICHTIG

            if ( wanted_frage == chosen_frage )

            {
                             cout&lt;&lt;&quot;RICHTIG! Die Programmiersprache C++ wurde im Jahre 1979 von \n Bjarne Stroustrup bei AT&amp;T als Erweiterung der Programmiersprache C entwickelt. &quot;&lt;&lt;endl;
                            break;
                             }

            // FALSCH

            else 
            { 
            cout &lt;&lt; &quot;Sie haben das Spiel verloren.\n Fangen sie bitte wieder von vorne an!&quot; &lt;&lt; endl &lt;&lt; endl &lt;&lt; endl; 
            break;
        } 

            break;

        } 

        // falsche zahl, neuer versuch 
        else if( trials_left &gt; 0 ) 
        { 
            cout &lt;&lt; &quot;Ihre Zahl:&quot;&lt;&lt;chosen_number&lt;&lt;&quot; | Die Zahl des Computers: &quot;&lt;&lt;wanted_number&lt;&lt;&quot;. Leider die falsche Zahl.\n Waehlen Sie bitte eine neue Zahl&quot; &lt;&lt; endl &lt;&lt; endl; 
            --trials_left; 

        } 

        else 
        { 
            cout &lt;&lt; &quot;Sie haben das Spiel verloren&quot; &lt;&lt; endl &lt;&lt; endl &lt;&lt; endl; 
        } 

    } 

}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1942683</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1942683</guid><dc:creator><![CDATA[TheSpecula]]></dc:creator><pubDate>Sat, 21 Aug 2010 10:21:46 GMT</pubDate></item><item><title><![CDATA[Reply to C++ Konsolenanwenung in Forms umschreiben on Sat, 21 Aug 2010 12:00:16 GMT]]></title><description><![CDATA[<p>TheSpecula schrieb:</p>
<blockquote>
<p>Doch wohin muss ich die C++ Datei hinkopieren wenn ich einen frame erstellt habe?</p>
</blockquote>
<p>Papierkorb</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1942730</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1942730</guid><dc:creator><![CDATA[ehrlich]]></dc:creator><pubDate>Sat, 21 Aug 2010 12:00:16 GMT</pubDate></item><item><title><![CDATA[Reply to C++ Konsolenanwenung in Forms umschreiben on Sat, 21 Aug 2010 12:53:24 GMT]]></title><description><![CDATA[<p>Wow, Klasse für diese vielseitige und doch eindeutige Aussage du Nerd.</p>
<p>Ach dann bist du etwa der, der auf die Welt gekommen ist und gleich erste Reden über Arrays und If-Abfragen gehalten hat, was?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1942753</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1942753</guid><dc:creator><![CDATA[TheSpecula]]></dc:creator><pubDate>Sat, 21 Aug 2010 12:53:24 GMT</pubDate></item><item><title><![CDATA[Reply to C++ Konsolenanwenung in Forms umschreiben on Sat, 21 Aug 2010 13:28:05 GMT]]></title><description><![CDATA[<p>Ich versteh deine Frage ehrlich gesagt auch nicht. Wo willst du die hin verschieben? Was für ne Form soll sich dann öffnen? Und wie willst du die Konsole loswerden, wo du ja mit cout ständig da alles drauf schreibst was dem Programm einen gewissen Sinn gibt?</p>
<p>EDIT: Und lass dich hier nicht so provozieren. Hier gibts einige Deppen die anonym irgendwelche dummen Kommentare abgeben. Ignorier das einfach und steig nicht drauf ein.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1942763</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1942763</guid><dc:creator><![CDATA[Max3000]]></dc:creator><pubDate>Sat, 21 Aug 2010 13:28:05 GMT</pubDate></item><item><title><![CDATA[Reply to C++ Konsolenanwenung in Forms umschreiben on Sat, 21 Aug 2010 13:35:34 GMT]]></title><description><![CDATA[<p>aber am ende merkst du, dass ich recht hab</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1942767</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1942767</guid><dc:creator><![CDATA[ehrlich]]></dc:creator><pubDate>Sat, 21 Aug 2010 13:35:34 GMT</pubDate></item><item><title><![CDATA[Reply to C++ Konsolenanwenung in Forms umschreiben on Sat, 21 Aug 2010 14:07:00 GMT]]></title><description><![CDATA[<p>außerdem denke ich das er zu blöd für das forum hier ist.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1942771</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1942771</guid><dc:creator><![CDATA[ehrlich]]></dc:creator><pubDate>Sat, 21 Aug 2010 14:07:00 GMT</pubDate></item><item><title><![CDATA[Reply to C++ Konsolenanwenung in Forms umschreiben on Sat, 21 Aug 2010 14:31:37 GMT]]></title><description><![CDATA[<p>TheSpecula schrieb:</p>
<blockquote>
<p>Wow, Klasse für diese vielseitige und doch eindeutige Aussage du Nerd.</p>
<p>Ach dann bist du etwa der, der auf die Welt gekommen ist und gleich erste Reden über Arrays und If-Abfragen gehalten hat, was?</p>
</blockquote>
<p>Ich verstehe deine Frage leider auch nicht, vielleicht kannst sie ja nochmal verständlicher stellen :p</p>
<p>Aber geh auf so Provokationen oder Ähnliches wie es &quot;ehrlich&quot; gemacht hat gar nicht ein, macht auch keinen guten Eindruck hier im Forum wenn man gleich so dumme Anmachen schreibt bzw dann zurück schreibt.</p>
<p>Also stell deine Frage am besten nochmal so dass man sie versteht, dann wird dir mit Sicherheit auch geholen;-)</p>
<p>Lg freeG</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1942777</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1942777</guid><dc:creator><![CDATA[fr33g]]></dc:creator><pubDate>Sat, 21 Aug 2010 14:31:37 GMT</pubDate></item><item><title><![CDATA[Reply to C++ Konsolenanwenung in Forms umschreiben on Sat, 21 Aug 2010 14:55:20 GMT]]></title><description><![CDATA[<p>ehrlich schrieb:</p>
<blockquote>
<p>außerdem denke ich das er zu blöd für das forum hier ist.</p>
</blockquote>
<p>Egal ob Einsteiger oder Fortgeschrittener. Hier ist niemand zu blöd für das Forum weil wenn jeder Profi wäre, so wie es &quot;ehrlich&quot; ohne jeglichen Zweifel ist, dann wäre das Forum tot und niemand würde was posten.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1942778</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1942778</guid><dc:creator><![CDATA[Max3000]]></dc:creator><pubDate>Sat, 21 Aug 2010 14:55:20 GMT</pubDate></item><item><title><![CDATA[Reply to C++ Konsolenanwenung in Forms umschreiben on Sat, 21 Aug 2010 14:59:19 GMT]]></title><description><![CDATA[<p><a class="plugin-mentions-user plugin-mentions-a" href="https://www.c-plusplus.net/forum/uid/24155">@TheSpecula</a>:<br />
Wenn ich das recht verstehe, willst du, dass dein Quiz in einem Fenster läuft, so wie die anderen Windows-Programme auch.</p>
<p>Hier mal ein Beispielcode einer solchen Anwendung, eventuell kannst du daran ja noch was basteln:</p>
<pre><code class="language-cpp">#include &lt;windows.h&gt;

LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);

int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, PSTR szCmdLine, int iCmdShow)
{
    HWND hwnd; 
    MSG msg;

    WNDCLASS wc;

    wc.style         = CS_HREDRAW | CS_VREDRAW;
    wc.lpfnWndProc   = WndProc;
    wc.cbClsExtra    = 0;
    wc.cbWndExtra    = 0;
    wc.hInstance     = hInstance ;
    wc.hIcon         = LoadIcon(NULL, IDI_APPLICATION);
    wc.hCursor       = LoadCursor (NULL, IDC_ARROW);
    wc.hbrBackground = (HBRUSH) 16;
    wc.lpszMenuName  = NULL ;
    wc.lpszClassName = &quot;Classname&quot; ;

    RegisterClass(&amp;wc);

  int Width  = GetSystemMetrics(SM_CXSCREEN);
  int Height = GetSystemMetrics(SM_CYSCREEN);
  int xpos = (Width  / 2)-225;
  int ypos = (Height / 2)-150;

  hwnd = CreateWindow(
				 &quot;Classname&quot;,
               	 &quot;Fenstertitel&quot;,
               	 WS_SYSMENU|WS_MINIMIZEBOX,
               	 xpos,
               	 ypos,
               	 450,
               	 300,
               	 NULL,
               	 NULL,
               	 hInstance,
               	 NULL
		 );

  ShowWindow (hwnd, iCmdShow);
  UpdateWindow (hwnd);

  while (GetMessage (&amp;msg, NULL, 0, 0))
  {
  TranslateMessage(&amp;msg);
  DispatchMessage(&amp;msg);
  }

  return msg.wParam;

}

LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
{
static HWND Button;
static HWND Edit;

    switch (message)
    {

	case WM_CREATE:
	{
	    Button = CreateWindow(&quot;button&quot;,
                              &quot;Hier klicken&quot;,
                              WS_CHILD | WS_VISIBLE,
                              225-60,220,120,30,
                              hWnd,
                              NULL,
                              ((LPCREATESTRUCT) lParam) -&gt; hInstance,
                              (HMENU)1);

	    Edit = CreateWindow(&quot;edit&quot;,
                              &quot;Hier Text eingeben&quot;,
                              WS_CHILD | WS_VISIBLE | WS_BORDER | ES_AUTOHSCROLL,
                              225-100,180,200,20,
                              hWnd,
                              NULL,
                              ((LPCREATESTRUCT) lParam) -&gt; hInstance,
                              (HMENU)1);
	return 0;
	}

	case WM_COMMAND:
	{
         if (lParam == (LPARAM)Button)
              if (HIWORD(wParam) == BN_CLICKED)
              {
			  char str[500];
			  GetWindowText(Edit,str,-1);
		      MessageBoxA(hWnd,str,&quot;Info&quot;,MB_ICONINFORMATION);
              return 0;
              }

    return 0;
    }

	    case WM_DESTROY:
        {
	        DestroyWindow(hWnd);
	        PostQuitMessage(0);
            return 0;
        }
    }
    return DefWindowProc(hWnd, message, wParam, lParam);
}
</code></pre>
<p>Du musst als Projekttyp Win32-Anwendung auswählen, keine Konsolenanwendung.</p>
<p>MfG, Jochen</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1942780</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1942780</guid><dc:creator><![CDATA[Jochen S.]]></dc:creator><pubDate>Sat, 21 Aug 2010 14:59:19 GMT</pubDate></item><item><title><![CDATA[Reply to C++ Konsolenanwenung in Forms umschreiben on Sat, 21 Aug 2010 19:02:39 GMT]]></title><description><![CDATA[<p>Ich selber arbeite zwar auch mit der WIN-API, jedoch würde ich ihm dann doch eher empfehlen, sich vll erst mal umzuschauen, was er für ein GUI-Framework nehmen will oder eben die WIN-API und dann aber das ausgewählte richtig lernen, weil sonst bringt ihm das relativ wenig, denn ich wette er wird jetzt ohne Kenntnisse in dem entpsrechendem Bereich, sein Programm sicherlich nicht hinbekommen.</p>
<p>Also les dich am besten mal bisschen durchs Forum oder Internet was da so alles über GUI steht und such dir dann ein Framework aus und arbeite dich ein;-)</p>
<p>Da hast am meisten von.</p>
<p>Lg freeG</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1942832</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1942832</guid><dc:creator><![CDATA[fr33g]]></dc:creator><pubDate>Sat, 21 Aug 2010 19:02:39 GMT</pubDate></item><item><title><![CDATA[Reply to C++ Konsolenanwenung in Forms umschreiben on Sat, 21 Aug 2010 19:57:40 GMT]]></title><description><![CDATA[<p>Max3000 schrieb:</p>
<blockquote>
<p>ehrlich schrieb:</p>
<blockquote>
<p>außerdem denke ich das er zu blöd für das forum hier ist.</p>
</blockquote>
<p>Egal ob Einsteiger oder Fortgeschrittener. Hier ist niemand zu blöd für das Forum weil wenn jeder Profi wäre, so wie es &quot;ehrlich&quot; ohne jeglichen Zweifel ist, dann wäre das Forum tot und niemand würde was posten.</p>
</blockquote>
<p>Außerdem verwendet noch wer meinen Namen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1942850</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1942850</guid><dc:creator><![CDATA[ehrlich]]></dc:creator><pubDate>Sat, 21 Aug 2010 19:57:40 GMT</pubDate></item></channel></rss>