<?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[Weiß nicht mehr weiter - DialogBox]]></title><description><![CDATA[<p>Folgendes:</p>
<p>Das ist bisher der Code:</p>
<pre><code class="language-cpp">#include &lt;windows.h&gt; 
LRESULT CALLBACK WndProc (HWND, UINT, WPARAM, LPARAM); 
INT_PTR CALLBACK DialogProc(HWND,UINT,WPARAM,LPARAM);

int WINAPI WinMain (HINSTANCE hI, HINSTANCE hPrI, PSTR szCmdLine, int iCmdShow) 
{ 
 char szName[] = &quot;Fensterklasse&quot;; 
 HBRUSH hintergrund = CreateSolidBrush( RGB( 255, 255, 255 ) ); 
 WNDCLASS wc; 

 wc.style         = CS_HREDRAW | CS_VREDRAW; 
 wc.lpfnWndProc   = WndProc; 
 wc.cbClsExtra    = 0; 
 wc.cbWndExtra    = 0; 
 wc.hInstance     = hI; 
 wc.hIcon         = LoadIcon (NULL, IDI_WINLOGO); 
 wc.hCursor       = 0; 
 wc.hbrBackground = hintergrund; 
 wc.lpszMenuName  = NULL; 
 wc.lpszClassName = szName; 

 RegisterClass (&amp;wc); 

 int window_x,window_y,window_w=1024,window_h=768, aufl_x=1024, aufl_y=768;
 window_x=(aufl_x/2)-(window_w/2);
 window_y=(aufl_y/2)-(window_h/2);

 HWND hwnd = CreateWindow (szName, &quot;RomMatch&quot;, WS_OVERLAPPEDWINDOW, 
                            window_x, window_y, window_w, window_h, NULL, NULL, hI, NULL); 
 ShowWindow   (hwnd, iCmdShow); 
 UpdateWindow (hwnd); 

 HWND hwnd_dlg=DialogBox(      
    hI,
    &quot;Muhaha&quot;,
    hwnd,
    ??);
//----------------------------------------------------------------------------------- 

  MSG msg; 

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

//----------------------------------------------------------------------------------- 

INT_PTR CALLBACK DialogProc(HWND hwnd_dlg,UINT uMsg,WPARAM wParam,LPARAM lParam)
{

}

LRESULT CALLBACK WndProc (HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) 
{ 
 HDC hdc; 
 PAINTSTRUCT ps; 
 HWND hwndButton; 

 switch (message) 
 { 

  /*case WM_PAINT: 
    hdc = BeginPaint (hwnd, &amp;ps); 
      SetTextColor(hdc, RGB(255,0,0) ); 
      SetBkColor(hdc, RGB(255,255,0) ); 
      TextOut (hdc, 20, 20, &quot;Ich bin ein Fenster.&quot;, 20); 
      EndPaint (hwnd, &amp;ps); 
  return 0; 
*/
case WM_CREATE : 

  hwndButton = CreateWindow ( 
  &quot;button&quot;, &quot;File&quot;, 
  WS_CHILD | WS_VISIBLE | BS_FLAT, 
  0, 0, 100, 20, 
  hwnd, (HMENU)1,((LPCREATESTRUCT) lParam)-&gt;hInstance, NULL); 

  return 0 ; 

  case WM_COMMAND:
    switch (LOWORD(wParam)) 
        { 
             case 1:
                  MessageBox(hwnd,&quot;Click auf Knopf 1&quot;, &quot;Die Nachricht WM_COMMAND wurde erzeugt&quot;, MB_OK);
             break;
        } 
        return 0L; 
  return 0;

  case WM_DESTROY: 
    PostQuitMessage (0); 
  return 0; 
 } 

 return DefWindowProc (hwnd, message, wParam, lParam); 
}
</code></pre>
<p>Da wo die Fragezeichen sind:</p>
<pre><code class="language-cpp">HWND hwnd_dlg=DialogBox(      
    hI,
    &quot;Muhaha&quot;,
    hwnd,
    ??);
</code></pre>
<p>, weiß ich einfach nicht weiter, hab zwar bei msdn gelesen, aber weiß nicht was damit gemeint ist. Danke für die Hilfe!</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/68511/weiß-nicht-mehr-weiter-dialogbox</link><generator>RSS for Node</generator><lastBuildDate>Wed, 08 Apr 2026 18:52:22 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/68511.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 18 Mar 2004 14:43:08 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Weiß nicht mehr weiter - DialogBox on Thu, 18 Mar 2004 14:43:08 GMT]]></title><description><![CDATA[<p>Folgendes:</p>
<p>Das ist bisher der Code:</p>
<pre><code class="language-cpp">#include &lt;windows.h&gt; 
LRESULT CALLBACK WndProc (HWND, UINT, WPARAM, LPARAM); 
INT_PTR CALLBACK DialogProc(HWND,UINT,WPARAM,LPARAM);

int WINAPI WinMain (HINSTANCE hI, HINSTANCE hPrI, PSTR szCmdLine, int iCmdShow) 
{ 
 char szName[] = &quot;Fensterklasse&quot;; 
 HBRUSH hintergrund = CreateSolidBrush( RGB( 255, 255, 255 ) ); 
 WNDCLASS wc; 

 wc.style         = CS_HREDRAW | CS_VREDRAW; 
 wc.lpfnWndProc   = WndProc; 
 wc.cbClsExtra    = 0; 
 wc.cbWndExtra    = 0; 
 wc.hInstance     = hI; 
 wc.hIcon         = LoadIcon (NULL, IDI_WINLOGO); 
 wc.hCursor       = 0; 
 wc.hbrBackground = hintergrund; 
 wc.lpszMenuName  = NULL; 
 wc.lpszClassName = szName; 

 RegisterClass (&amp;wc); 

 int window_x,window_y,window_w=1024,window_h=768, aufl_x=1024, aufl_y=768;
 window_x=(aufl_x/2)-(window_w/2);
 window_y=(aufl_y/2)-(window_h/2);

 HWND hwnd = CreateWindow (szName, &quot;RomMatch&quot;, WS_OVERLAPPEDWINDOW, 
                            window_x, window_y, window_w, window_h, NULL, NULL, hI, NULL); 
 ShowWindow   (hwnd, iCmdShow); 
 UpdateWindow (hwnd); 

 HWND hwnd_dlg=DialogBox(      
    hI,
    &quot;Muhaha&quot;,
    hwnd,
    ??);
//----------------------------------------------------------------------------------- 

  MSG msg; 

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

//----------------------------------------------------------------------------------- 

INT_PTR CALLBACK DialogProc(HWND hwnd_dlg,UINT uMsg,WPARAM wParam,LPARAM lParam)
{

}

LRESULT CALLBACK WndProc (HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) 
{ 
 HDC hdc; 
 PAINTSTRUCT ps; 
 HWND hwndButton; 

 switch (message) 
 { 

  /*case WM_PAINT: 
    hdc = BeginPaint (hwnd, &amp;ps); 
      SetTextColor(hdc, RGB(255,0,0) ); 
      SetBkColor(hdc, RGB(255,255,0) ); 
      TextOut (hdc, 20, 20, &quot;Ich bin ein Fenster.&quot;, 20); 
      EndPaint (hwnd, &amp;ps); 
  return 0; 
*/
case WM_CREATE : 

  hwndButton = CreateWindow ( 
  &quot;button&quot;, &quot;File&quot;, 
  WS_CHILD | WS_VISIBLE | BS_FLAT, 
  0, 0, 100, 20, 
  hwnd, (HMENU)1,((LPCREATESTRUCT) lParam)-&gt;hInstance, NULL); 

  return 0 ; 

  case WM_COMMAND:
    switch (LOWORD(wParam)) 
        { 
             case 1:
                  MessageBox(hwnd,&quot;Click auf Knopf 1&quot;, &quot;Die Nachricht WM_COMMAND wurde erzeugt&quot;, MB_OK);
             break;
        } 
        return 0L; 
  return 0;

  case WM_DESTROY: 
    PostQuitMessage (0); 
  return 0; 
 } 

 return DefWindowProc (hwnd, message, wParam, lParam); 
}
</code></pre>
<p>Da wo die Fragezeichen sind:</p>
<pre><code class="language-cpp">HWND hwnd_dlg=DialogBox(      
    hI,
    &quot;Muhaha&quot;,
    hwnd,
    ??);
</code></pre>
<p>, weiß ich einfach nicht weiter, hab zwar bei msdn gelesen, aber weiß nicht was damit gemeint ist. Danke für die Hilfe!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/483519</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/483519</guid><dc:creator><![CDATA[regaa]]></dc:creator><pubDate>Thu, 18 Mar 2004 14:43:08 GMT</pubDate></item><item><title><![CDATA[Reply to Weiß nicht mehr weiter - DialogBox on Thu, 18 Mar 2004 14:45:52 GMT]]></title><description><![CDATA[<p>?? == MB_OK oder eine der anderen MB_* Konstanten.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/483522</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/483522</guid><dc:creator><![CDATA[..]]></dc:creator><pubDate>Thu, 18 Mar 2004 14:45:52 GMT</pubDate></item><item><title><![CDATA[Reply to Weiß nicht mehr weiter - DialogBox on Thu, 18 Mar 2004 14:48:45 GMT]]></title><description><![CDATA[<p>Es geht darum, das cih Menue erzeugen will,z.B. ein ganz einfaches Datei-&gt; Beenden menue. Ich nutze kein VC++ deswegen will ich auch keine rc dateien benutzen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/483526</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/483526</guid><dc:creator><![CDATA[regaa]]></dc:creator><pubDate>Thu, 18 Mar 2004 14:48:45 GMT</pubDate></item><item><title><![CDATA[Reply to Weiß nicht mehr weiter - DialogBox on Thu, 18 Mar 2004 14:55:59 GMT]]></title><description><![CDATA[<p>.. schrieb:</p>
<blockquote>
<p>?? == MB_OK oder eine der anderen MB_* Konstanten.</p>
</blockquote>
<p>muuaahhhhaaa <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="😃"
    /> woll eher nicht</p>
<p><a class="plugin-mentions-user plugin-mentions-a" href="https://www.c-plusplus.net/forum/uid/7033">@regaa</a></p>
<pre><code class="language-cpp">HWND hwnd_dlg=DialogBox(      
    hI,
    &quot;Muhaha&quot;,
    hwnd,
    (DLGPROC)DialogProc);
</code></pre>
<p>so muss es aussehen.</p>
<p>schau dir das noch mit dazu an<br />
<a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winui/winui/windowsuserinterface/windowing/dialogboxes/usingdialogboxes.asp" rel="nofollow">http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winui/winui/windowsuserinterface/windowing/dialogboxes/usingdialogboxes.asp</a><br />
bei dem beispielen findest genügend infos</p>
]]></description><link>https://www.c-plusplus.net/forum/post/483528</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/483528</guid><dc:creator><![CDATA[miller_m]]></dc:creator><pubDate>Thu, 18 Mar 2004 14:55:59 GMT</pubDate></item><item><title><![CDATA[Reply to Weiß nicht mehr weiter - DialogBox on Thu, 18 Mar 2004 14:59:45 GMT]]></title><description><![CDATA[<p>Leider kommt bei mir diese Fehlermeldung <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>
<p>invalid conversion from `int' to `HWND__*'</p>
<p>Aber auf jeden FAll FETTEN DANK an dich.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/483530</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/483530</guid><dc:creator><![CDATA[regaa]]></dc:creator><pubDate>Thu, 18 Mar 2004 14:59:45 GMT</pubDate></item><item><title><![CDATA[Reply to Weiß nicht mehr weiter - DialogBox on Thu, 18 Mar 2004 15:04:53 GMT]]></title><description><![CDATA[<p>ups bösser fehler von mir <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>
<pre><code class="language-cpp">DialogBox(      
    hI,
    &quot;Muhaha&quot;,
    hwnd,
    (DLGPROC)DialogProc);
</code></pre>
<p>dialogbox gibt keinen fensterhandle zurück</p>
<p>CreateDialogBox gibt einen zurück<br />
<a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winui/WinUI/WindowsUserInterface/Windowing/DialogBoxes/DialogBoxReference/DialogBoxFunctions/CreateDialog.asp" rel="nofollow">http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winui/WinUI/WindowsUserInterface/Windowing/DialogBoxes/DialogBoxReference/DialogBoxFunctions/CreateDialog.asp</a></p>
]]></description><link>https://www.c-plusplus.net/forum/post/483534</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/483534</guid><dc:creator><![CDATA[miller_m]]></dc:creator><pubDate>Thu, 18 Mar 2004 15:04:53 GMT</pubDate></item><item><title><![CDATA[Reply to Weiß nicht mehr weiter - DialogBox on Thu, 18 Mar 2004 15:10:50 GMT]]></title><description><![CDATA[<p>Vielen Dank.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/483539</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/483539</guid><dc:creator><![CDATA[regaa]]></dc:creator><pubDate>Thu, 18 Mar 2004 15:10:50 GMT</pubDate></item><item><title><![CDATA[Reply to Weiß nicht mehr weiter - DialogBox on Thu, 18 Mar 2004 15:12:05 GMT]]></title><description><![CDATA[<p>lol, hatte MessageBox gelesen <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>
]]></description><link>https://www.c-plusplus.net/forum/post/483541</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/483541</guid><dc:creator><![CDATA[..]]></dc:creator><pubDate>Thu, 18 Mar 2004 15:12:05 GMT</pubDate></item><item><title><![CDATA[Reply to Weiß nicht mehr weiter - DialogBox on Thu, 18 Mar 2004 15:22:26 GMT]]></title><description><![CDATA[<p>Ok, jetzt schätz ich mal ist alles erzeugt, damit ich anfangen kann dieses auch graphisch darzustellen. Das muss soviel ich weiß hier rein:</p>
<p>INT_PTR CALLBACK DialogProc(HWND hwnd_dlg,UINT uMsg,WPARAM wParam,LPARAM lParam)<br />
{</p>
<p>}</p>
<p>Aber was genau muss denn darein? Also inem Block weiter unten und dem was ich in msdn gelesen und verstanden hab, beruht halt diese WinAPI auf das Windows Message System usw. Also müsste ich damit alöle Nachrichten abfangen können.</p>
<p>INT_PTR CALLBACK DialogProc(HWND hwnd_dlg,UINT uMsg,WPARAM wParam,LPARAM lParam)<br />
{<br />
switch (uMsg)<br />
{<br />
}<br />
}</p>
<p>Das hab ich versucht, leider geht das irgendwie nicht:</p>
<pre><code class="language-cpp">NT_PTR CALLBACK DialogProc(HWND hwnd_dlg,UINT uMsg,WPARAM wParam,LPARAM lParam)
{
switch (uMsg)
{

  case WM_CREATE:
      MessageBox(hwnd_dlg,&quot;DialogBox wurde erzeugt&quot;, &quot;Die Nachricht WM_COMMAND wurde erzeugt&quot;, MB_OK);
  break;

  case WM_COMMAND: 
    switch (LOWORD(wParam)) 
    { 

    } 
  break;
}
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/483551</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/483551</guid><dc:creator><![CDATA[regaa]]></dc:creator><pubDate>Thu, 18 Mar 2004 15:22:26 GMT</pubDate></item><item><title><![CDATA[Reply to Weiß nicht mehr weiter - DialogBox on Thu, 18 Mar 2004 15:24:57 GMT]]></title><description><![CDATA[<p>mit den nachrichten das stimmt, allerdings ist beim dialog WM_INITDIALOG und bei einem fenser WM_CREATE</p>
]]></description><link>https://www.c-plusplus.net/forum/post/483555</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/483555</guid><dc:creator><![CDATA[miller_m]]></dc:creator><pubDate>Thu, 18 Mar 2004 15:24:57 GMT</pubDate></item><item><title><![CDATA[Reply to Weiß nicht mehr weiter - DialogBox on Thu, 18 Mar 2004 15:44:44 GMT]]></title><description><![CDATA[<p>Vielen Dank, jetzt bin ich schon viel schlauer geworden, aber verzeiht mir die Frage, was soll denn</p>
<p>The CreateDialog function uses the CreateWindowEx function to create the dialog box. CreateDialog then sends a WM_INITDIALOG message (and a WM_SETFONT message if the template specifies the DS_SETFONT or DS_SHELLFONT style) to the dialog box procedure. The function displays the dialog box if the template specifies the WS_VISIBLE style. Finally, CreateDialog returns the window handle to the dialog box.</p>
<p>in dem Satz</p>
<p>The function displays the dialog box if the template specifies the WS_VISIBLE style</p>
<p>heißen, also von welchem Template ist hier die Rede?? Sry das ich so dumm Frage, aber ich bin absoluter neuling c++ . <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/483579</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/483579</guid><dc:creator><![CDATA[regaa]]></dc:creator><pubDate>Thu, 18 Mar 2004 15:44:44 GMT</pubDate></item><item><title><![CDATA[Reply to Weiß nicht mehr weiter - DialogBox on Thu, 18 Mar 2004 16:18:31 GMT]]></title><description><![CDATA[<p>der zweite parameter ist dein template.</p>
<p>wo hast du den &quot;Muhaha&quot; definiert ?!?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/483601</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/483601</guid><dc:creator><![CDATA[miller_m]]></dc:creator><pubDate>Thu, 18 Mar 2004 16:18:31 GMT</pubDate></item><item><title><![CDATA[Reply to Weiß nicht mehr weiter - DialogBox on Thu, 18 Mar 2004 16:18:33 GMT]]></title><description><![CDATA[<p>Ok, hab das Zauberwort gefunden. CreateMenu()<br />
mfg regaa</p>
]]></description><link>https://www.c-plusplus.net/forum/post/483602</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/483602</guid><dc:creator><![CDATA[regaa]]></dc:creator><pubDate>Thu, 18 Mar 2004 16:18:33 GMT</pubDate></item><item><title><![CDATA[Reply to Weiß nicht mehr weiter - DialogBox on Thu, 18 Mar 2004 16:19:28 GMT]]></title><description><![CDATA[<p>regaa schrieb:</p>
<blockquote>
<p>Ok, hab das Zauberwort gefunden. CreateMenu()<br />
mfg regaa</p>
</blockquote>
<p>was hat das jetzt mit deinem dialog zu tun <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/483604</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/483604</guid><dc:creator><![CDATA[miller_m]]></dc:creator><pubDate>Thu, 18 Mar 2004 16:19:28 GMT</pubDate></item><item><title><![CDATA[Reply to Weiß nicht mehr weiter - DialogBox on Thu, 18 Mar 2004 16:32:16 GMT]]></title><description><![CDATA[<p>regaa schrieb:</p>
<blockquote>
<p>Es geht darum, das ich Menue erzeugen will,z.B. ein ganz einfaches Datei-&gt; Beenden menue. Ich nutze kein VC++ deswegen will ich auch keine rc dateien benutzen.</p>
</blockquote>
]]></description><link>https://www.c-plusplus.net/forum/post/483617</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/483617</guid><dc:creator><![CDATA[regaa]]></dc:creator><pubDate>Thu, 18 Mar 2004 16:32:16 GMT</pubDate></item><item><title><![CDATA[Reply to Weiß nicht mehr weiter - DialogBox on Thu, 18 Mar 2004 17:06:28 GMT]]></title><description><![CDATA[<blockquote>
<p>Ich nutze kein VC++ deswegen will ich auch keine rc dateien benutzen.</p>
</blockquote>
<p>Hä? Das ist ja ein tolles Argument. Ich benutze auch nicht immer den VC, aber benutze stets Resourcen-Dateien.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/483643</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/483643</guid><dc:creator><![CDATA[WebFritzi]]></dc:creator><pubDate>Thu, 18 Mar 2004 17:06:28 GMT</pubDate></item><item><title><![CDATA[Reply to Weiß nicht mehr weiter - DialogBox on Thu, 18 Mar 2004 18:20:55 GMT]]></title><description><![CDATA[<p>Schau Dir doch lieber erstmal auf <a href="http://WinAPI.net" rel="nofollow">WinAPI.net</a> <a href="http://www.winapi.net/index.php?inhalt=tipp2" rel="nofollow">diesen Codeschnipsel</a> an.</p>
<p>Da siehst Du, wie man eine Anwendung baut, die nur aus einem modalen Dialog besteht...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/483728</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/483728</guid><dc:creator><![CDATA[Hepi]]></dc:creator><pubDate>Thu, 18 Mar 2004 18:20:55 GMT</pubDate></item></channel></rss>