<?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[Fenster wird nicht geöffnet  Prozessor Qualmt nichts passiert]]></title><description><![CDATA[<p>Hi,<br />
Ich wollte ein Programm schreiben was änlich wie das ICQ fenster aufgebaut ist nur leider habe ich irgendwo da drin aktuell ein Problem der öffnet das fenster nicht vollständig und die Prozessorleistung schnellt auf 50% hoch.<br />
Exakter werden nur die Buttons und die Editfelder geladen der eigentliche hintergrund nicht. Könnt ihr mir helfen?</p>
<pre><code class="language-cpp">#include &quot;stdafx.h&quot;
#include &lt;winsock2.h&gt;
#include &lt;winsock.h&gt;
#include &lt;windows.h&gt;
#include &lt;stdio.h&gt;
#include &lt;stdlib.h&gt;
#include &lt;iostream&gt;
#include &lt;math.h&gt;
#include &lt;fstream&gt;
#include &lt;cstring&gt;
#include &lt;string&gt;
#include &lt;map&gt;
using namespace std;

LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM);

//DWORD WINAPI test(LPVOID);

void verlauf_nullen();
bool Textda=false;
bool verbunden=false;
SOCKET server=SOCKET_ERROR;
char* verlauf=new char[32000];
SOCKET Verbinden();

struct daten
{
	HWND eingabe;
	HWND ausgabe;
	char buf[1000];

}Info;

int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance,
					PSTR szCmdLine, int iCmdShow)
{	
	/*HANDLE H_Thread;
	DWORD ThreadID;
	H_Thread=CreateThread(NULL,
		0,
		test,
		(LPVOID*)&amp;Info,
		NULL,
		&amp;ThreadID);*/

	HWND     hWnd;
	MSG      msg;
	WNDCLASS wc;

	const char szAppName[] = &quot;Text ausgeben&quot;;

	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)GetStockObject(WHITE_BRUSH);
	wc.lpszMenuName   = NULL;
	wc.lpszClassName  = szAppName;

	RegisterClass(&amp;wc);

	hWnd = CreateWindow( szAppName,
						szAppName,
						WS_SYSMENU ,			//Das bewirkt, dass das Fenster nur einen Schließen Button hat
						CW_USEDEFAULT,
						CW_USEDEFAULT,
						700,
						350,
						NULL,
						NULL,
						hInstance,
						NULL );

	ShowWindow(hWnd, iCmdShow);
	UpdateWindow(hWnd);

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

	return (int)msg.wParam;
}

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

	static HWND hEdit_eingabe, hButton_verbinden, hButton_senden, hEdit_ausgabe;

	static char buffer_eingabe[1000];
	static char buffer_ausgabe[1000];

	static int iEntscheidung;

	switch(message)
	{
	case WM_CREATE:
		{
			hEdit_ausgabe= CreateWindow(&quot;edit&quot;,
				buffer_ausgabe,
				ES_READONLY | WS_CHILD | WS_VISIBLE | ES_MULTILINE | 
				ES_AUTOVSCROLL | WS_VSCROLL ,
				0, 0, 0, 0,
				hWnd,
				NULL,
				((LPCREATESTRUCT) lParam) -&gt; hInstance,
				NULL);

			hEdit_eingabe = CreateWindow(&quot;edit&quot;,
				buffer_eingabe,    // &lt;- das ist der Inhalt der Editfelds
				WS_CHILD | WS_VISIBLE | ES_MULTILINE | //Paar styles
				ES_AUTOVSCROLL,
				0, 0, 0, 0,
				hWnd,
				NULL,
				((LPCREATESTRUCT) lParam) -&gt; hInstance,
				NULL);

			hButton_senden = CreateWindow(&quot;button&quot;,
				&quot;Senden&quot;,
				WS_CHILD | WS_VISIBLE ,
				0, 0, 0, 0,
				hWnd,
				NULL,
				((LPCREATESTRUCT) lParam) -&gt; hInstance,
				NULL);

			hButton_verbinden = CreateWindow(&quot;button&quot;,
				&quot;Verbinden&quot;,
				WS_CHILD | WS_VISIBLE ,
				0, 0, 0, 0,
				hWnd,
				NULL,
				((LPCREATESTRUCT) lParam) -&gt; hInstance,
				NULL);

			return 0;
		}

	case WM_COMMAND:
		{

			if (lParam == (LPARAM)hButton_senden)
			{
				if (HIWORD(wParam) == BN_CLICKED)
				{
					if(GetWindowTextLength(hEdit_eingabe) &gt;999) 
					{
						MessageBox(hWnd, &quot;Text ist zu lang! Text soll 1000 Zeichen nicht überschreiten!&quot;, &quot;Fehler&quot;, 0);
						return 0;
					}
					else 
					{
						GetWindowText(hEdit_eingabe, buffer_eingabe, GetWindowTextLength(hEdit_eingabe)+1);
						if(buffer_eingabe[0] == '\0')
						{
							MessageBox(hWnd, &quot;Kein Text!&quot;, &quot;Fehler&quot;, 0);
						}

						else 
						{		///Verlauf speichern
							SetWindowText(hEdit_ausgabe, buffer_eingabe);
							SetWindowText(hEdit_eingabe, &quot;\0&quot;);
							///MessageBox(hWnd, buffer_eingabe, &quot;Der Text lautet:&quot;, 0);
						}
					}
			 }

			}

/////////////////////////////////////////////////////////////////////////////

			if (lParam == (LPARAM)hButton_verbinden)
			{
				if (HIWORD(wParam) == BN_CLICKED)
				{
					iEntscheidung = MessageBox(hWnd, &quot;Verbinden?&quot;, &quot;Bestätgung&quot;, MB_YESNO);

					if(iEntscheidung == IDNO)
					{
						return 0;
					}
					else 
					{
						if(!verbunden)
						{
							SetWindowText(hEdit_eingabe, &quot;\0&quot;);
							server=Verbinden();
							if(server!=SOCKET_ERROR || INVALID_SOCKET)
							{
								SetWindowText(hEdit_ausgabe,&quot;Verbunden&quot;);

								verlauf_nullen();
							}
						}
					}
				}
			}

			return 0;

		}

	case WM_SIZE:
		{              
			MoveWindow(hEdit_eingabe, 5, 160, 534, 150, TRUE);
			MoveWindow(hEdit_ausgabe, 5, 5  , 534, 150, TRUE);
			MoveWindow(hButton_senden, 550, 215, 125, 25, TRUE);
			MoveWindow(hButton_verbinden, 550, 245, 125, 25, TRUE);
			return 0;
		}

	case WM_CLOSE:
		{
			DestroyWindow(hWnd);
			return 0;
			delete[] verlauf;
		}
	case WM_DESTROY:
		{
			PostQuitMessage(0);
			//delete[] verlauf;
			return 0;
		}

		return DefWindowProc(hWnd, message, wParam, lParam);

	}
}

void verlauf_nullen()
{
	for(int i=0;i&lt;32000;i++)
	{
		verlauf[i]='\0';
	}

}

/*DWORD WINAPI test(LPVOID x)
{	
	Sleep(10000);
	return 0;
}*/

SOCKET Verbinden()
{
	SOCKET client;
	SOCKADDR_IN addr;
	long fh;

	client=socket(AF_INET,SOCK_STREAM,0);
	while(true)
	{
		if(client==INVALID_SOCKET)
		{
			continue;
		}

		// Verbinden
		memset(&amp;addr,0,sizeof(SOCKADDR_IN)); // zuerst alles auf 0 setzten
		addr.sin_family=AF_INET;

		addr.sin_port=htons(1000); // wir verwenden mal port 12345

		addr.sin_addr.s_addr=inet_addr(&quot;127.0.0.1&quot;);//IP); // zielrechner ist unser eigener

		fh=connect(client,(SOCKADDR*)&amp;addr,sizeof(SOCKADDR));
		if(fh==SOCKET_ERROR)
		{

			continue;
		}
		verbunden=true;

		return client;

	}
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/topic/212727/fenster-wird-nicht-geöffnet-prozessor-qualmt-nichts-passiert</link><generator>RSS for Node</generator><lastBuildDate>Sat, 18 Apr 2026 20:36:28 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/212727.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 09 May 2008 17:24:01 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Fenster wird nicht geöffnet  Prozessor Qualmt nichts passiert on Fri, 09 May 2008 17:24:01 GMT]]></title><description><![CDATA[<p>Hi,<br />
Ich wollte ein Programm schreiben was änlich wie das ICQ fenster aufgebaut ist nur leider habe ich irgendwo da drin aktuell ein Problem der öffnet das fenster nicht vollständig und die Prozessorleistung schnellt auf 50% hoch.<br />
Exakter werden nur die Buttons und die Editfelder geladen der eigentliche hintergrund nicht. Könnt ihr mir helfen?</p>
<pre><code class="language-cpp">#include &quot;stdafx.h&quot;
#include &lt;winsock2.h&gt;
#include &lt;winsock.h&gt;
#include &lt;windows.h&gt;
#include &lt;stdio.h&gt;
#include &lt;stdlib.h&gt;
#include &lt;iostream&gt;
#include &lt;math.h&gt;
#include &lt;fstream&gt;
#include &lt;cstring&gt;
#include &lt;string&gt;
#include &lt;map&gt;
using namespace std;

LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM);

//DWORD WINAPI test(LPVOID);

void verlauf_nullen();
bool Textda=false;
bool verbunden=false;
SOCKET server=SOCKET_ERROR;
char* verlauf=new char[32000];
SOCKET Verbinden();

struct daten
{
	HWND eingabe;
	HWND ausgabe;
	char buf[1000];

}Info;

int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance,
					PSTR szCmdLine, int iCmdShow)
{	
	/*HANDLE H_Thread;
	DWORD ThreadID;
	H_Thread=CreateThread(NULL,
		0,
		test,
		(LPVOID*)&amp;Info,
		NULL,
		&amp;ThreadID);*/

	HWND     hWnd;
	MSG      msg;
	WNDCLASS wc;

	const char szAppName[] = &quot;Text ausgeben&quot;;

	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)GetStockObject(WHITE_BRUSH);
	wc.lpszMenuName   = NULL;
	wc.lpszClassName  = szAppName;

	RegisterClass(&amp;wc);

	hWnd = CreateWindow( szAppName,
						szAppName,
						WS_SYSMENU ,			//Das bewirkt, dass das Fenster nur einen Schließen Button hat
						CW_USEDEFAULT,
						CW_USEDEFAULT,
						700,
						350,
						NULL,
						NULL,
						hInstance,
						NULL );

	ShowWindow(hWnd, iCmdShow);
	UpdateWindow(hWnd);

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

	return (int)msg.wParam;
}

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

	static HWND hEdit_eingabe, hButton_verbinden, hButton_senden, hEdit_ausgabe;

	static char buffer_eingabe[1000];
	static char buffer_ausgabe[1000];

	static int iEntscheidung;

	switch(message)
	{
	case WM_CREATE:
		{
			hEdit_ausgabe= CreateWindow(&quot;edit&quot;,
				buffer_ausgabe,
				ES_READONLY | WS_CHILD | WS_VISIBLE | ES_MULTILINE | 
				ES_AUTOVSCROLL | WS_VSCROLL ,
				0, 0, 0, 0,
				hWnd,
				NULL,
				((LPCREATESTRUCT) lParam) -&gt; hInstance,
				NULL);

			hEdit_eingabe = CreateWindow(&quot;edit&quot;,
				buffer_eingabe,    // &lt;- das ist der Inhalt der Editfelds
				WS_CHILD | WS_VISIBLE | ES_MULTILINE | //Paar styles
				ES_AUTOVSCROLL,
				0, 0, 0, 0,
				hWnd,
				NULL,
				((LPCREATESTRUCT) lParam) -&gt; hInstance,
				NULL);

			hButton_senden = CreateWindow(&quot;button&quot;,
				&quot;Senden&quot;,
				WS_CHILD | WS_VISIBLE ,
				0, 0, 0, 0,
				hWnd,
				NULL,
				((LPCREATESTRUCT) lParam) -&gt; hInstance,
				NULL);

			hButton_verbinden = CreateWindow(&quot;button&quot;,
				&quot;Verbinden&quot;,
				WS_CHILD | WS_VISIBLE ,
				0, 0, 0, 0,
				hWnd,
				NULL,
				((LPCREATESTRUCT) lParam) -&gt; hInstance,
				NULL);

			return 0;
		}

	case WM_COMMAND:
		{

			if (lParam == (LPARAM)hButton_senden)
			{
				if (HIWORD(wParam) == BN_CLICKED)
				{
					if(GetWindowTextLength(hEdit_eingabe) &gt;999) 
					{
						MessageBox(hWnd, &quot;Text ist zu lang! Text soll 1000 Zeichen nicht überschreiten!&quot;, &quot;Fehler&quot;, 0);
						return 0;
					}
					else 
					{
						GetWindowText(hEdit_eingabe, buffer_eingabe, GetWindowTextLength(hEdit_eingabe)+1);
						if(buffer_eingabe[0] == '\0')
						{
							MessageBox(hWnd, &quot;Kein Text!&quot;, &quot;Fehler&quot;, 0);
						}

						else 
						{		///Verlauf speichern
							SetWindowText(hEdit_ausgabe, buffer_eingabe);
							SetWindowText(hEdit_eingabe, &quot;\0&quot;);
							///MessageBox(hWnd, buffer_eingabe, &quot;Der Text lautet:&quot;, 0);
						}
					}
			 }

			}

/////////////////////////////////////////////////////////////////////////////

			if (lParam == (LPARAM)hButton_verbinden)
			{
				if (HIWORD(wParam) == BN_CLICKED)
				{
					iEntscheidung = MessageBox(hWnd, &quot;Verbinden?&quot;, &quot;Bestätgung&quot;, MB_YESNO);

					if(iEntscheidung == IDNO)
					{
						return 0;
					}
					else 
					{
						if(!verbunden)
						{
							SetWindowText(hEdit_eingabe, &quot;\0&quot;);
							server=Verbinden();
							if(server!=SOCKET_ERROR || INVALID_SOCKET)
							{
								SetWindowText(hEdit_ausgabe,&quot;Verbunden&quot;);

								verlauf_nullen();
							}
						}
					}
				}
			}

			return 0;

		}

	case WM_SIZE:
		{              
			MoveWindow(hEdit_eingabe, 5, 160, 534, 150, TRUE);
			MoveWindow(hEdit_ausgabe, 5, 5  , 534, 150, TRUE);
			MoveWindow(hButton_senden, 550, 215, 125, 25, TRUE);
			MoveWindow(hButton_verbinden, 550, 245, 125, 25, TRUE);
			return 0;
		}

	case WM_CLOSE:
		{
			DestroyWindow(hWnd);
			return 0;
			delete[] verlauf;
		}
	case WM_DESTROY:
		{
			PostQuitMessage(0);
			//delete[] verlauf;
			return 0;
		}

		return DefWindowProc(hWnd, message, wParam, lParam);

	}
}

void verlauf_nullen()
{
	for(int i=0;i&lt;32000;i++)
	{
		verlauf[i]='\0';
	}

}

/*DWORD WINAPI test(LPVOID x)
{	
	Sleep(10000);
	return 0;
}*/

SOCKET Verbinden()
{
	SOCKET client;
	SOCKADDR_IN addr;
	long fh;

	client=socket(AF_INET,SOCK_STREAM,0);
	while(true)
	{
		if(client==INVALID_SOCKET)
		{
			continue;
		}

		// Verbinden
		memset(&amp;addr,0,sizeof(SOCKADDR_IN)); // zuerst alles auf 0 setzten
		addr.sin_family=AF_INET;

		addr.sin_port=htons(1000); // wir verwenden mal port 12345

		addr.sin_addr.s_addr=inet_addr(&quot;127.0.0.1&quot;);//IP); // zielrechner ist unser eigener

		fh=connect(client,(SOCKADDR*)&amp;addr,sizeof(SOCKADDR));
		if(fh==SOCKET_ERROR)
		{

			continue;
		}
		verbunden=true;

		return client;

	}
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1506243</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1506243</guid><dc:creator><![CDATA[Matyr]]></dc:creator><pubDate>Fri, 09 May 2008 17:24:01 GMT</pubDate></item><item><title><![CDATA[Reply to Fenster wird nicht geöffnet  Prozessor Qualmt nichts passiert on Fri, 09 May 2008 18:08:52 GMT]]></title><description><![CDATA[<p>Dir ist folgende Zeile verrutscht:</p>
<pre><code class="language-cpp">return DefWindowProc(hWnd, message, wParam, lParam);
</code></pre>
<p>Die gehört hinter den switch Block, nicht in diesen. Das nächste mal bitte sämtliche Warnungen des Compiler anschalten. Dann wäre dir auch aufgefallen, dass nicht alle Pfade eine return Anweisung besitzen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1506256</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1506256</guid><dc:creator><![CDATA[groovemaster]]></dc:creator><pubDate>Fri, 09 May 2008 18:08:52 GMT</pubDate></item><item><title><![CDATA[Reply to Fenster wird nicht geöffnet  Prozessor Qualmt nichts passiert on Fri, 09 May 2008 18:55:49 GMT]]></title><description><![CDATA[<p>nö da fehlt ein default</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1506272</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1506272</guid><dc:creator><![CDATA[HaterSkater]]></dc:creator><pubDate>Fri, 09 May 2008 18:55:49 GMT</pubDate></item><item><title><![CDATA[Reply to Fenster wird nicht geöffnet  Prozessor Qualmt nichts passiert on Fri, 09 May 2008 19:37:52 GMT]]></title><description><![CDATA[<p>HaterSkater schrieb:</p>
<blockquote>
<p>nö da fehlt ein default</p>
</blockquote>
<p>Nö, das ist egal, weil es auf das gleiche hinausläuft. <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f921.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--clown_face"
      title=":clown:"
      alt="🤡"
    /></p>
<p><a class="plugin-mentions-user plugin-mentions-a" href="https://www.c-plusplus.net/forum/uid/18709">@Matyr</a><br />
Beim Überfliegen ist mir übrigens noch etwas aufgefallen:</p>
<pre><code class="language-cpp">case WM_CLOSE:
        {
            DestroyWindow(hWnd);
            return 0;
            delete[] verlauf;
        }
    case WM_DESTROY:
        {
            PostQuitMessage(0);
            //delete[] verlauf;
            return 0;
        }
</code></pre>
<p><em>delete[] verlauf</em> wird nie aufgerufen. Ich weiss nicht, ob das wirklich so beabsichtigt ist.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1506285</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1506285</guid><dc:creator><![CDATA[groovemaster]]></dc:creator><pubDate>Fri, 09 May 2008 19:37:52 GMT</pubDate></item><item><title><![CDATA[Reply to Fenster wird nicht geöffnet  Prozessor Qualmt nichts passiert on Sat, 10 May 2008 07:47:16 GMT]]></title><description><![CDATA[<p>ne das ist ned egal wenn er im switch breaked dann wird bei dir DefWindowProc trotzdem noch aufgerufen und dann gehts voll in die hose.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1506391</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1506391</guid><dc:creator><![CDATA[haterskater]]></dc:creator><pubDate>Sat, 10 May 2008 07:47:16 GMT</pubDate></item><item><title><![CDATA[Reply to Fenster wird nicht geöffnet  Prozessor Qualmt nichts passiert on Sat, 10 May 2008 16:58:38 GMT]]></title><description><![CDATA[<p>Wie du sehen kannst, wird nirgendwo &quot;gebreaked&quot;. Und da geht auch nichts in die Hose, selbst wenn DefWindowProc aufgerufen werden würde, wo es nicht mehr notwendig ist. Die WinAPI Dokumentation schreibt hier idR explizit das Verhalten vor.<br />
Als kleiner Tipp noch, lass am besten solchen Schlaumeierkommentare bleiben. Damit machst du dir keine Freunde. Zumal sie hier nicht mal Sinn ergeben. Als Alternative kann man DefWindowProc natürlich auch in einen <em>default</em> Block setzen. Das kann man aber auch in einem vernünftigen Ton schreiben ohne fehlplatztiertes &quot;nö&quot;. <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="😉"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1506654</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1506654</guid><dc:creator><![CDATA[groovemaster]]></dc:creator><pubDate>Sat, 10 May 2008 16:58:38 GMT</pubDate></item><item><title><![CDATA[Reply to Fenster wird nicht geöffnet  Prozessor Qualmt nichts passiert on Sat, 10 May 2008 17:11:29 GMT]]></title><description><![CDATA[<p>du hast wohl ein rad ab. das ist mit sicherheit NICHT egal ob du DefWindowProc aufrufst, auch wenn du die nachricht schon selbst behandelt hast. und ein break macht er noch rein. du willst mir hier was erzählen, obwohl du OFFENSICHTLICH FALSCHE ratschläge erteilst, roflig. lern nochmal 3 jahre und dann versuchs nochmal, du kleiner neuling.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1506662</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1506662</guid><dc:creator><![CDATA[haterskater]]></dc:creator><pubDate>Sat, 10 May 2008 17:11:29 GMT</pubDate></item><item><title><![CDATA[Reply to Fenster wird nicht geöffnet  Prozessor Qualmt nichts passiert on Sat, 10 May 2008 17:32:16 GMT]]></title><description><![CDATA[<p>haterskater schrieb:</p>
<blockquote>
<p>und ein break macht er noch rein.</p>
</blockquote>
<p>Ja, bestimmt. Das macht er nur wegen dir. <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="🙄"
    /> Deine Überheblichkeit und verbalen Entgleisungen machen dich zudem erst so richtig lächerlich. Nur so zur Info.<br />
Aber da das Problem des OP gelöst sein sollte, macht hier sowieso ein Mod gleich dicht.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1506669</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1506669</guid><dc:creator><![CDATA[groovemaster]]></dc:creator><pubDate>Sat, 10 May 2008 17:32:16 GMT</pubDate></item><item><title><![CDATA[Reply to Fenster wird nicht geöffnet  Prozessor Qualmt nichts passiert on Sat, 10 May 2008 17:34:30 GMT]]></title><description><![CDATA[<p>haterskater, dir ist wohl ein bisschen fad im kopf.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1506672</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1506672</guid><dc:creator><![CDATA[hustbaer]]></dc:creator><pubDate>Sat, 10 May 2008 17:34:30 GMT</pubDate></item><item><title><![CDATA[Reply to Fenster wird nicht geöffnet  Prozessor Qualmt nichts passiert on Sat, 10 May 2008 17:56:19 GMT]]></title><description><![CDATA[<p>sorry leute, die starke sonneneinstrahlung heute hat mir nicht gut getan</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1506689</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1506689</guid><dc:creator><![CDATA[haterskater]]></dc:creator><pubDate>Sat, 10 May 2008 17:56:19 GMT</pubDate></item><item><title><![CDATA[Reply to Fenster wird nicht geöffnet  Prozessor Qualmt nichts passiert on Sat, 10 May 2008 18:09:12 GMT]]></title><description><![CDATA[<p>bla bla, hustbaer hoer halt auf mich zu faken. willst du meine aussage etwa bestreiten? immer das gleiche in diesem forum. zig neider, die es nicht ertragen können, das ich (oder andere) mehr ahnung haben als sie.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1506698</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1506698</guid><dc:creator><![CDATA[haterskater]]></dc:creator><pubDate>Sat, 10 May 2008 18:09:12 GMT</pubDate></item><item><title><![CDATA[Reply to Fenster wird nicht geöffnet  Prozessor Qualmt nichts passiert on Sat, 10 May 2008 18:10:30 GMT]]></title><description><![CDATA[<p>haterskater schrieb:</p>
<blockquote>
<p>sorry leute, die starke sonneneinstrahlung heute hat mir nicht gut getan</p>
</blockquote>
<p>fake <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f44e.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--thumbs_down"
      title=":-1:"
      alt="👎"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1506699</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1506699</guid><dc:creator><![CDATA[real_haterskater]]></dc:creator><pubDate>Sat, 10 May 2008 18:10:30 GMT</pubDate></item><item><title><![CDATA[Reply to Fenster wird nicht geöffnet  Prozessor Qualmt nichts passiert on Sat, 10 May 2008 20:35:50 GMT]]></title><description><![CDATA[<p>danke return verschieben hat geholfen</p>
<p>komme mit den ganzen klammern nich kla...</p>
<p>mfg. matyr <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f44d.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--thumbs_up"
      title=":+1:"
      alt="👍"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1506801</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1506801</guid><dc:creator><![CDATA[Matyr]]></dc:creator><pubDate>Sat, 10 May 2008 20:35:50 GMT</pubDate></item></channel></rss>