<?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[&amp;quot;ungültiger zugriff auf speicherbereich&amp;quot;]]></title><description><![CDATA[<pre><code class="language-cpp">BOOL ShowExtendedStyles(HWND hwndDialog, HWND hwndFoundWindow)
{
  HINSTANCE hInstance = NULL;
  LPWNDCLASSEX wndClassEx = NULL;
  char szClassName[255]; // Puffer des Klassennamen, nullterminiert
  char szOutput[255]; // Ausgabe

  // Retrieves a handle to the application instance.
  hInstance = (HINSTANCE)GetWindowLong(hwndFoundWindow, GWL_HINSTANCE);

  // Retrieves the name of the class to which the specified window belongs.
  int ClassNameNumChars = GetClassName(hwndFoundWindow, szClassName, sizeof(szClassName)-1);

  // Klassen-Informationen anfordern:
  if(GetClassInfoEx(hInstance, szClassName, wndClassEx) == 0)
  {
	ErrorExit();
	// GCL_STYLE: Retrieves the window-class style bits.
	//SetDlgItemText (hwndDialog, IDC_EDIT2, &quot;Class not found!&quot;);
  }
  else
  {
    //SetDlgItemText (hwndDialog, IDC_STATIC, &quot;sdsd&quot;);

  SetDlgItemText (hwndDialog, IDC_EDIT2, szOutput);
  }

  // Output

  /*
  wsprintf(szOutput,
	       &quot;long: %d\r\n&quot;,
		   wndClassEx-&gt;cbSize);
  */

  //SetDlgItemText (hwndDialog, IDC_EDIT2, szOutput);

  // return value if SUCCESS
  return true;
}
</code></pre>
<p>in der zeile:</p>
<pre><code class="language-cpp">if(GetClassInfoEx(hInstance, szClassName, wndClassEx) == 0)
</code></pre>
<p>tritt ein fehler auf. diese wird über ErrorExit(); in einer MessageBox angezeigt.</p>
<p>Dieser lautet: &quot;ungültiger zugriff auf speicherbereich&quot;</p>
<p>Woran liegt's denn?</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/98576/quot-ungültiger-zugriff-auf-speicherbereich-quot</link><generator>RSS for Node</generator><lastBuildDate>Mon, 27 Apr 2026 20:41:34 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/98576.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 20 Jan 2005 15:13:15 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to &amp;quot;ungültiger zugriff auf speicherbereich&amp;quot; on Thu, 20 Jan 2005 15:13:15 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">BOOL ShowExtendedStyles(HWND hwndDialog, HWND hwndFoundWindow)
{
  HINSTANCE hInstance = NULL;
  LPWNDCLASSEX wndClassEx = NULL;
  char szClassName[255]; // Puffer des Klassennamen, nullterminiert
  char szOutput[255]; // Ausgabe

  // Retrieves a handle to the application instance.
  hInstance = (HINSTANCE)GetWindowLong(hwndFoundWindow, GWL_HINSTANCE);

  // Retrieves the name of the class to which the specified window belongs.
  int ClassNameNumChars = GetClassName(hwndFoundWindow, szClassName, sizeof(szClassName)-1);

  // Klassen-Informationen anfordern:
  if(GetClassInfoEx(hInstance, szClassName, wndClassEx) == 0)
  {
	ErrorExit();
	// GCL_STYLE: Retrieves the window-class style bits.
	//SetDlgItemText (hwndDialog, IDC_EDIT2, &quot;Class not found!&quot;);
  }
  else
  {
    //SetDlgItemText (hwndDialog, IDC_STATIC, &quot;sdsd&quot;);

  SetDlgItemText (hwndDialog, IDC_EDIT2, szOutput);
  }

  // Output

  /*
  wsprintf(szOutput,
	       &quot;long: %d\r\n&quot;,
		   wndClassEx-&gt;cbSize);
  */

  //SetDlgItemText (hwndDialog, IDC_EDIT2, szOutput);

  // return value if SUCCESS
  return true;
}
</code></pre>
<p>in der zeile:</p>
<pre><code class="language-cpp">if(GetClassInfoEx(hInstance, szClassName, wndClassEx) == 0)
</code></pre>
<p>tritt ein fehler auf. diese wird über ErrorExit(); in einer MessageBox angezeigt.</p>
<p>Dieser lautet: &quot;ungültiger zugriff auf speicherbereich&quot;</p>
<p>Woran liegt's denn?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/701440</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/701440</guid><dc:creator><![CDATA[shareholder]]></dc:creator><pubDate>Thu, 20 Jan 2005 15:13:15 GMT</pubDate></item><item><title><![CDATA[Reply to &amp;quot;ungültiger zugriff auf speicherbereich&amp;quot; on Thu, 20 Jan 2005 15:26:12 GMT]]></title><description><![CDATA[<p>shareholder schrieb:</p>
<blockquote>
<p>Woran liegt's denn?</p>
</blockquote>
<p>Am Nicht-MSDN-Library-Lesen.</p>
<p>Der dritte Parameter von GetClassInfoEx muss ein Zeiger auf eine Instanz der Struktur WNDCLASSEX sein, nicht einfach nur ein Nullzeiger.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/701465</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/701465</guid><dc:creator><![CDATA[MFK]]></dc:creator><pubDate>Thu, 20 Jan 2005 15:26:12 GMT</pubDate></item><item><title><![CDATA[Reply to &amp;quot;ungültiger zugriff auf speicherbereich&amp;quot; on Thu, 20 Jan 2005 15:29:43 GMT]]></title><description><![CDATA[<p>Wie funktioniert das? Sorry, bin Anfänger. <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/701468</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/701468</guid><dc:creator><![CDATA[shareholder]]></dc:creator><pubDate>Thu, 20 Jan 2005 15:29:43 GMT</pubDate></item><item><title><![CDATA[Reply to &amp;quot;ungültiger zugriff auf speicherbereich&amp;quot; on Thu, 20 Jan 2005 16:57:51 GMT]]></title><description><![CDATA[<p>Ach verflucht! ich vestehe es einfach nicht. <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f621.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--pouting_face"
      title=":rage:"
      alt="😡"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/701618</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/701618</guid><dc:creator><![CDATA[shareholder]]></dc:creator><pubDate>Thu, 20 Jan 2005 16:57:51 GMT</pubDate></item><item><title><![CDATA[Reply to &amp;quot;ungültiger zugriff auf speicherbereich&amp;quot; on Thu, 20 Jan 2005 16:59:21 GMT]]></title><description><![CDATA[<p>shareholder schrieb:</p>
<blockquote>
<p>Wie funktioniert das? Sorry, bin Anfänger. <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>
</blockquote>
<p>Was suchst du dann bitte im WinAPI Forum?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/701622</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/701622</guid><dc:creator><![CDATA[gute Frage]]></dc:creator><pubDate>Thu, 20 Jan 2005 16:59:21 GMT</pubDate></item><item><title><![CDATA[Reply to &amp;quot;ungültiger zugriff auf speicherbereich&amp;quot; on Thu, 20 Jan 2005 17:00:57 GMT]]></title><description><![CDATA[<p>schreib anstatt</p>
<pre><code>LPWNDCLASSEX wndClassEx = NULL;
</code></pre>
<p>mal</p>
<pre><code>LPWNDCLASSEX wndClassEx = new WNDCLASSEX;
</code></pre>
<p>und am Ende des Progs/funktion</p>
<pre><code>delete wndClassEx
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/701625</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/701625</guid><dc:creator><![CDATA[Horst2]]></dc:creator><pubDate>Thu, 20 Jan 2005 17:00:57 GMT</pubDate></item><item><title><![CDATA[Reply to &amp;quot;ungültiger zugriff auf speicherbereich&amp;quot; on Thu, 20 Jan 2005 17:04:17 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">WNDCLASSEX wndClassEx;
// [...]
GetClassInfoEx(hInstance, szClassName, &amp;wndClassEx);
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/701631</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/701631</guid><dc:creator><![CDATA[flenders]]></dc:creator><pubDate>Thu, 20 Jan 2005 17:04:17 GMT</pubDate></item><item><title><![CDATA[Reply to &amp;quot;ungültiger zugriff auf speicherbereich&amp;quot; on Thu, 20 Jan 2005 17:14:03 GMT]]></title><description><![CDATA[<p>erstmal danke, ...</p>
<p>jetzt bekomme ich nur noch die meldung <strong>Error 1411: Klasse ist nicht vorhanden</strong> Woran könnte das liegen? Handle, HINSTANCE und Klassenname habe ich erfolgreich bekommen....</p>
<p>An &quot;gute Frage&quot;, logge dich bitte ein, wenn du etwas zu sagen hast! Wir behandeln WinApi gerade im Studium und ich muss bis Dienstag was gebastelt haben.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/701647</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/701647</guid><dc:creator><![CDATA[shareholder]]></dc:creator><pubDate>Thu, 20 Jan 2005 17:14:03 GMT</pubDate></item><item><title><![CDATA[Reply to &amp;quot;ungültiger zugriff auf speicherbereich&amp;quot; on Thu, 20 Jan 2005 17:15:18 GMT]]></title><description><![CDATA[<p>shareholder schrieb:</p>
<blockquote>
<p>jetzt bekomme ich nur noch die meldung <strong>Error 1411: Klasse ist nicht vorhanden</strong> Woran könnte das liegen? Handle, HINSTANCE und Klassenname habe ich erfolgreich bekommen....</p>
</blockquote>
<p>Bei wessen Code?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/701650</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/701650</guid><dc:creator><![CDATA[flenders]]></dc:creator><pubDate>Thu, 20 Jan 2005 17:15:18 GMT</pubDate></item><item><title><![CDATA[Reply to &amp;quot;ungültiger zugriff auf speicherbereich&amp;quot; on Thu, 20 Jan 2005 17:18:08 GMT]]></title><description><![CDATA[<p>beiden ;-))</p>
]]></description><link>https://www.c-plusplus.net/forum/post/701652</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/701652</guid><dc:creator><![CDATA[shareholder]]></dc:creator><pubDate>Thu, 20 Jan 2005 17:18:08 GMT</pubDate></item><item><title><![CDATA[Reply to &amp;quot;ungültiger zugriff auf speicherbereich&amp;quot; on Thu, 20 Jan 2005 17:42:10 GMT]]></title><description><![CDATA[<p>Komisch. Bei LPWNDCLASSEX hast du keinen Fehler bekommen? Hast du windows.h eingebunden?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/701675</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/701675</guid><dc:creator><![CDATA[flenders]]></dc:creator><pubDate>Thu, 20 Jan 2005 17:42:10 GMT</pubDate></item><item><title><![CDATA[Reply to &amp;quot;ungültiger zugriff auf speicherbereich&amp;quot; on Thu, 20 Jan 2005 17:46:55 GMT]]></title><description><![CDATA[<p>doch doch! bei lpwndclassex kam ein fehler.</p>
<p>ich dachte du meinst deine variante und die von Horst2. <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>hast du eine idee? ich kann mir echt nix vorstellen. <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>
<p>edit: ja, klar windows.h ist eingebunden <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>
]]></description><link>https://www.c-plusplus.net/forum/post/701680</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/701680</guid><dc:creator><![CDATA[shareholder]]></dc:creator><pubDate>Thu, 20 Jan 2005 17:46:55 GMT</pubDate></item><item><title><![CDATA[Reply to &amp;quot;ungültiger zugriff auf speicherbereich&amp;quot; on Thu, 20 Jan 2005 17:49:51 GMT]]></title><description><![CDATA[<p>hast du dich vielleicht verschrieben? kann es mir auch nicht erklären</p>
]]></description><link>https://www.c-plusplus.net/forum/post/701683</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/701683</guid><dc:creator><![CDATA[Horst2]]></dc:creator><pubDate>Thu, 20 Jan 2005 17:49:51 GMT</pubDate></item><item><title><![CDATA[Reply to &amp;quot;ungültiger zugriff auf speicherbereich&amp;quot; on Thu, 20 Jan 2005 17:57:51 GMT]]></title><description><![CDATA[<p>den code, den ich bereits habe:</p>
<pre><code class="language-cpp">BOOL ShowExtendedStyles(HWND hwndDialog, HWND hwndFoundWindow)
{
  HINSTANCE hInstance = NULL;
  WNDCLASSEX wndClassEx;
  char szClassName[255]; // Puffer des Klassennamen, nullterminiert
  char szOutput[255]; // Ausgabe

  // Retrieves a handle to the application instance.
  hInstance = (HINSTANCE)GetWindowLong(hwndFoundWindow, GWL_HINSTANCE);

  // Retrieves the name of the class to which the specified window belongs.
  int ClassNameNumChars = GetClassName(hwndFoundWindow, szClassName, sizeof(szClassName)-1);

  // Klassen-Informationen anfordern:
  if(GetClassInfoEx(hInstance, szClassName, &amp;wndClassEx) == 0)
  {
	ErrorExit();
  }
  else
  {
    //do something
  }

  // return value if SUCCESS
  return true;
}
</code></pre>
<p><a class="plugin-mentions-user plugin-mentions-a" href="https://www.c-plusplus.net/forum/uid/6345">@horst2</a> : dein <strong>new WNDCLASSEX</strong> funkt genau wie <strong>WNDCLASSEX wndClassEx;</strong>!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/701689</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/701689</guid><dc:creator><![CDATA[shareholder]]></dc:creator><pubDate>Thu, 20 Jan 2005 17:57:51 GMT</pubDate></item><item><title><![CDATA[Reply to &amp;quot;ungültiger zugriff auf speicherbereich&amp;quot; on Thu, 20 Jan 2005 17:58:50 GMT]]></title><description><![CDATA[<p>shareholder schrieb:</p>
<blockquote>
<p><a class="plugin-mentions-user plugin-mentions-a" href="https://www.c-plusplus.net/forum/uid/6345">@horst2</a> : dein <strong>new WNDCLASSEX</strong> funkt genau wie <strong>WNDCLASSEX wndClassEx;</strong>!</p>
</blockquote>
<p>schon klar <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>kannst du noch mal die genaue Fehlermeldung posten</p>
]]></description><link>https://www.c-plusplus.net/forum/post/701690</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/701690</guid><dc:creator><![CDATA[Horst2]]></dc:creator><pubDate>Thu, 20 Jan 2005 17:58:50 GMT</pubDate></item><item><title><![CDATA[Reply to &amp;quot;ungültiger zugriff auf speicherbereich&amp;quot; on Thu, 20 Jan 2005 18:02:15 GMT]]></title><description><![CDATA[<p>bei mir spuckt er keinen Fehler aus.</p>
<p>Mit was arbeitest du?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/701693</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/701693</guid><dc:creator><![CDATA[Horst2]]></dc:creator><pubDate>Thu, 20 Jan 2005 18:02:15 GMT</pubDate></item><item><title><![CDATA[Reply to &amp;quot;ungültiger zugriff auf speicherbereich&amp;quot; on Thu, 20 Jan 2005 18:03:45 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">void ErrorExit() 
{ 
    TCHAR szBuf[80]; 
    LPVOID lpMsgBuf;
    DWORD dw = GetLastError(); 

    FormatMessage(
        FORMAT_MESSAGE_ALLOCATE_BUFFER | 
        FORMAT_MESSAGE_FROM_SYSTEM,
        NULL,
        dw,
        MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
        (LPTSTR) &amp;lpMsgBuf,
        0, NULL );

    wsprintf(szBuf, &quot;Error %d: %s&quot;, dw, lpMsgBuf); 

    MessageBox(NULL, szBuf, &quot;Debugging Error&quot;, MB_OK); 

    LocalFree(lpMsgBuf);
}
</code></pre>
<blockquote>
<p><strong>Error 1411: Klasse ist nicht vorhanden</strong></p>
</blockquote>
]]></description><link>https://www.c-plusplus.net/forum/post/701694</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/701694</guid><dc:creator><![CDATA[shareholder]]></dc:creator><pubDate>Thu, 20 Jan 2005 18:03:45 GMT</pubDate></item><item><title><![CDATA[Reply to &amp;quot;ungültiger zugriff auf speicherbereich&amp;quot; on Thu, 20 Jan 2005 18:05:37 GMT]]></title><description><![CDATA[<p>Ich arbeite mit Microsoft Visual Studio.<br />
Wird aber damit nix zu tun haben. *g*</p>
]]></description><link>https://www.c-plusplus.net/forum/post/701699</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/701699</guid><dc:creator><![CDATA[shareholder]]></dc:creator><pubDate>Thu, 20 Jan 2005 18:05:37 GMT</pubDate></item><item><title><![CDATA[Reply to &amp;quot;ungültiger zugriff auf speicherbereich&amp;quot; on Thu, 20 Jan 2005 18:08:16 GMT]]></title><description><![CDATA[<p>mmmh, hab ich auch. was hast du für ein projekt?<br />
unterstützt du mfc?</p>
<p>bei geht's</p>
]]></description><link>https://www.c-plusplus.net/forum/post/701704</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/701704</guid><dc:creator><![CDATA[Horst2]]></dc:creator><pubDate>Thu, 20 Jan 2005 18:08:16 GMT</pubDate></item><item><title><![CDATA[Reply to &amp;quot;ungültiger zugriff auf speicherbereich&amp;quot; on Thu, 20 Jan 2005 18:10:16 GMT]]></title><description><![CDATA[<p>Und bei welcher Zeile kommt der Fehler genau?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/701709</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/701709</guid><dc:creator><![CDATA[flenders]]></dc:creator><pubDate>Thu, 20 Jan 2005 18:10:16 GMT</pubDate></item><item><title><![CDATA[Reply to &amp;quot;ungültiger zugriff auf speicherbereich&amp;quot; on Thu, 20 Jan 2005 18:35:22 GMT]]></title><description><![CDATA[<p>Ist das ein Fenster einer fremden Anwendung?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/701729</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/701729</guid><dc:creator><![CDATA[profi...]]></dc:creator><pubDate>Thu, 20 Jan 2005 18:35:22 GMT</pubDate></item><item><title><![CDATA[Reply to &amp;quot;ungültiger zugriff auf speicherbereich&amp;quot; on Thu, 20 Jan 2005 18:36:41 GMT]]></title><description><![CDATA[<p>Wenn ja benutz GetClassLongPtr.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/701730</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/701730</guid><dc:creator><![CDATA[profi...]]></dc:creator><pubDate>Thu, 20 Jan 2005 18:36:41 GMT</pubDate></item><item><title><![CDATA[Reply to &amp;quot;ungültiger zugriff auf speicherbereich&amp;quot; on Thu, 20 Jan 2005 18:37:57 GMT]]></title><description><![CDATA[<p>Benutze Win32</p>
<pre><code class="language-cpp">HINSTANCE hInstance = NULL;
  WNDCLASSEX wndClassEx;
  char szClassName[255]; // Puffer des Klassennamen, nullterminiert
  // char szOutput[255]; // Ausgabe

  HWND hwndFoundWindow = FindWindow(&quot;MineSweeper&quot;, &quot;MineSweeper&quot;);
  if(hwndFoundWindow == NULL)
    MessageBox(NULL, &quot;Fenster wurde nicht gefunden&quot;, &quot;blub&quot;, MB_OK);

  // Retrieves a handle to the application instance.
  hInstance = (HINSTANCE)GetWindowLong(hwndFoundWindow, GWL_HINSTANCE);

  // Retrieves the name of the class to which the specified window belongs.
  int ClassNameNumChars = GetClassName(hwndFoundWindow, szClassName, sizeof(szClassName)-1);

  // Klassen-Informationen anfordern:
  if(GetClassInfoEx(hInstance, szClassName, &amp;wndClassEx) == 0)
  {
	ErrorExit();
  }
  else
  {
    //do something
	  MessageBox(NULL, &quot;Alley OKAY :=)&quot;, &quot;blub&quot;, MB_OK);
  }
</code></pre>
<p>Funktioniert der Code bei Euch, wenn ihr die Anwendung MineSweeper geöffnet habt?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/701731</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/701731</guid><dc:creator><![CDATA[shareholder]]></dc:creator><pubDate>Thu, 20 Jan 2005 18:37:57 GMT</pubDate></item><item><title><![CDATA[Reply to &amp;quot;ungültiger zugriff auf speicherbereich&amp;quot; on Thu, 20 Jan 2005 18:38:06 GMT]]></title><description><![CDATA[<p>ok, also ein fenster eines fremden prozesses?!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/701733</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/701733</guid><dc:creator><![CDATA[profi...]]></dc:creator><pubDate>Thu, 20 Jan 2005 18:38:06 GMT</pubDate></item><item><title><![CDATA[Reply to &amp;quot;ungültiger zugriff auf speicherbereich&amp;quot; on Thu, 20 Jan 2005 18:43:41 GMT]]></title><description><![CDATA[<p>Ja, steht ja da! <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>
]]></description><link>https://www.c-plusplus.net/forum/post/701741</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/701741</guid><dc:creator><![CDATA[shareholder]]></dc:creator><pubDate>Thu, 20 Jan 2005 18:43:41 GMT</pubDate></item><item><title><![CDATA[Reply to &amp;quot;ungültiger zugriff auf speicherbereich&amp;quot; on Thu, 20 Jan 2005 18:44:24 GMT]]></title><description><![CDATA[<p>hast ja nacheditiert. die lösung steht ja auch da.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/701742</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/701742</guid><dc:creator><![CDATA[profi...]]></dc:creator><pubDate>Thu, 20 Jan 2005 18:44:24 GMT</pubDate></item></channel></rss>