<?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[Dialogbox ohne Hauptfenster ?]]></title><description><![CDATA[<pre><code class="language-cpp">// winChat.cpp : Definiert den Einsprungpunkt für die Anwendung.
//

#include &quot;stdafx.h&quot;
#include &quot;resource.h&quot;

BOOL CALLBACK DlgProc (HWND, UINT, WPARAM, LPARAM);

int APIENTRY WinMain(HINSTANCE hInstance,
                     HINSTANCE hPrevInstance,
                     LPSTR     lpCmdLine,
                     int       nCmdShow )
{
 	// ZU ERLEDIGEN: Fügen Sie hier den Code ein.

	DialogBox(hInstance,MAKEINTRESOURCE(IDD_DIALOG1),0,DlgProc);
}

BOOL CALLBACK DlgProc (HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
{
	switch(message)
	{
		case WM_INITDIALOG:
			return TRUE;

		case WM_COMMAND:
			switch(LOWORD(wParam))
			{
				case IDOK:
					return true;
			}
			break;
	}
	return FALSE;
}
</code></pre>
<p>so versuche ich eine dialogbox ohne hauptfenster zu öffnen...klappt nicht <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=":/"
      alt="😕"
    /></p>
<p>hat jmd nen tipp?</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/182705/dialogbox-ohne-hauptfenster</link><generator>RSS for Node</generator><lastBuildDate>Tue, 07 Jul 2026 08:31:01 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/182705.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 28 May 2007 12:03:36 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Dialogbox ohne Hauptfenster ? on Mon, 28 May 2007 12:03:36 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">// winChat.cpp : Definiert den Einsprungpunkt für die Anwendung.
//

#include &quot;stdafx.h&quot;
#include &quot;resource.h&quot;

BOOL CALLBACK DlgProc (HWND, UINT, WPARAM, LPARAM);

int APIENTRY WinMain(HINSTANCE hInstance,
                     HINSTANCE hPrevInstance,
                     LPSTR     lpCmdLine,
                     int       nCmdShow )
{
 	// ZU ERLEDIGEN: Fügen Sie hier den Code ein.

	DialogBox(hInstance,MAKEINTRESOURCE(IDD_DIALOG1),0,DlgProc);
}

BOOL CALLBACK DlgProc (HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
{
	switch(message)
	{
		case WM_INITDIALOG:
			return TRUE;

		case WM_COMMAND:
			switch(LOWORD(wParam))
			{
				case IDOK:
					return true;
			}
			break;
	}
	return FALSE;
}
</code></pre>
<p>so versuche ich eine dialogbox ohne hauptfenster zu öffnen...klappt nicht <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=":/"
      alt="😕"
    /></p>
<p>hat jmd nen tipp?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1293684</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1293684</guid><dc:creator><![CDATA[pixartist]]></dc:creator><pubDate>Mon, 28 May 2007 12:03:36 GMT</pubDate></item><item><title><![CDATA[Reply to Dialogbox ohne Hauptfenster ? on Mon, 28 May 2007 15:58:11 GMT]]></title><description><![CDATA[<p>Öffnet der mit dem Code überhaupt irgendetwas? Sieht mir nähmlich etwas seltsam aus, kann mich aber auch gut irren.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1293879</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1293879</guid><dc:creator><![CDATA[veryxRV]]></dc:creator><pubDate>Mon, 28 May 2007 15:58:11 GMT</pubDate></item><item><title><![CDATA[Reply to Dialogbox ohne Hauptfenster ? on Mon, 28 May 2007 18:59:27 GMT]]></title><description><![CDATA[<p>Probiers mal so</p>
<pre><code>[cpp]
// Nicht vergessen Header &amp; Libery
#include &lt;windows.h&gt;
#include &lt;commctrl.h&gt;

/* Bei Visual studio Libery-Files */
#pragma comment(lib,&quot;Comctl32.lib&quot;)

HINSTANCE	 hInst;
HWND hWnd;

int APIENTRY WinMain(HINSTANCE hInstance,
                     HINSTANCE hPrevInstance,
                     LPSTR     lpCmdLine,
                     int       nCmdShow)
{

	InitCommonControls();

	hInst = hInstance;

	DialogBox(hInst, (LPCTSTR)IDD_DIALOG1, 0, (DLGPROC)DlgProc);

	MSG msg;

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

}
[/cpp]
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1293996</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1293996</guid><dc:creator><![CDATA[Ascharan]]></dc:creator><pubDate>Mon, 28 May 2007 18:59:27 GMT</pubDate></item><item><title><![CDATA[Reply to Dialogbox ohne Hauptfenster ? on Mon, 28 May 2007 19:29:57 GMT]]></title><description><![CDATA[<pre><code>BOOL CALLBACK DialogProc (HWND, UINT, WPARAM, LPARAM);

// WinMain mit Dialogaufruf

int  WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, 
                    LPSTR lpCmdLine, int nCmdShow)
{
   return  DialogBox (hInstance, MAKEINTRESOURCE(IDD_DIALOG1), NULL, DialogProc);
}// Die Nachrichtenschleife des Dialoges.

// Ein Dialog bekommt statt WM_CREATE ein WM_INITDIALOG!
BOOL CALLBACK DialogProc (HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
{
   switch(message)
   {
      case  WM_INITDIALOG:
         return  TRUE;// Zum Beenden

      case  WM_CLOSE:
         EndDialog(hDlg,0);
         return  TRUE;// Hier mal die 2 Buttons abfragen (&quot;Ok&quot; und &quot;Abbrechen&quot;)

      case  WM_COMMAND:
         switch(LOWORD(wParam))
         {
         case  IDCANCEL:
           EndDialog(hDlg,0);
            return  TRUE;

         case  IDOK:
            Beep (1000,1000);
            return  TRUE;
         default:
            break;
         }
         return  FALSE;
   }
   return  FALSE;
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1294015</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1294015</guid><dc:creator><![CDATA[Elektronix]]></dc:creator><pubDate>Mon, 28 May 2007 19:29:57 GMT</pubDate></item><item><title><![CDATA[Reply to Dialogbox ohne Hauptfenster ? on Tue, 29 May 2007 06:09:12 GMT]]></title><description><![CDATA[<p>danke ich habs hinbekommen!<br />
jetzt bräuchte ich nurnoch nen tipp, wie ich das icon der exe und das icon vom dialog setze <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="🙂"
    /><br />
danke!</p>
<p>edit: ok das programmicon hab ich...jetzt brauch ich nurnoch das icon in der systemleiste im programm</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1294159</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1294159</guid><dc:creator><![CDATA[pixartist]]></dc:creator><pubDate>Tue, 29 May 2007 06:09:12 GMT</pubDate></item><item><title><![CDATA[Reply to Dialogbox ohne Hauptfenster ? on Tue, 29 May 2007 08:15:22 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">[code]
//Globales handle Setzen
HICON hIcon = NULL;

//.. anderer Code
case WM_INITDIALOG:
{
  // Icon Aus resource laden
  hIcon = (HICON)LoadImage(hInst,MAKEINTRESOURCE(IDI_MAIN_ICON),IMAGE_ICON, 16, 16, LR_SHARED);
  // ICON setzen
  SendMessage(hWnd, WM_SETICON, ICON_SMALL, (LPARAM) hIcon);
}
return TRUE;

[/code]
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1294231</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1294231</guid><dc:creator><![CDATA[Ascharan]]></dc:creator><pubDate>Tue, 29 May 2007 08:15:22 GMT</pubDate></item><item><title><![CDATA[Reply to Dialogbox ohne Hauptfenster ? on Tue, 29 May 2007 09:31:32 GMT]]></title><description><![CDATA[<p>ja aber das setzt nicht das icon in der systemleiste vom dialogfenster! (links neben dem fenstertitel)</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1294297</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1294297</guid><dc:creator><![CDATA[pixartist]]></dc:creator><pubDate>Tue, 29 May 2007 09:31:32 GMT</pubDate></item><item><title><![CDATA[Reply to Dialogbox ohne Hauptfenster ? on Tue, 29 May 2007 15:11:09 GMT]]></title><description><![CDATA[<p>Doch tut es.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1294573</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1294573</guid><dc:creator><![CDATA[[[global:former_user]]]]></dc:creator><pubDate>Tue, 29 May 2007 15:11:09 GMT</pubDate></item><item><title><![CDATA[Reply to Dialogbox ohne Hauptfenster ? on Tue, 29 May 2007 15:20:03 GMT]]></title><description><![CDATA[<p>LOL, <a class="plugin-mentions-user plugin-mentions-a" href="https://www.c-plusplus.net/forum/uid/6059">@pixartist</a>, Du darfst Dir ruhig helfen lassen^^.<br />
PS: Vergiss nicht, das Icon wieder zu löschen; DestroyIcon.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1294578</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1294578</guid><dc:creator><![CDATA[CodeFinder]]></dc:creator><pubDate>Tue, 29 May 2007 15:20:03 GMT</pubDate></item><item><title><![CDATA[Reply to Dialogbox ohne Hauptfenster ? on Tue, 29 May 2007 15:42:45 GMT]]></title><description><![CDATA[<p><a href="http://www.pixartist.de/pchat.jpg" rel="nofollow">http://www.pixartist.de/pchat.jpg</a><br />
nein tut es nicht</p>
<pre><code class="language-cpp">BOOL CALLBACK DlgProc (HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
{
	switch(message)
	{
		case WM_INITDIALOG: 
		//[...]
            SendMessage(hDlg,WM_SETICON,ICON_SMALL,(LPARAM)IDI_ICON1);
		SendMessage(hDlg,WM_SETICON,ICON_BIG,(LPARAM)IDI_ICON1);
            //[...]
       }
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1294604</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1294604</guid><dc:creator><![CDATA[pixartist]]></dc:creator><pubDate>Tue, 29 May 2007 15:42:45 GMT</pubDate></item><item><title><![CDATA[Reply to Dialogbox ohne Hauptfenster ? on Tue, 29 May 2007 16:19:11 GMT]]></title><description><![CDATA[<p>Welchen Wert hat &quot;IDI_ICON1&quot; ? Gibt es noch weitere Icons ?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1294637</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1294637</guid><dc:creator><![CDATA[CodeFinder]]></dc:creator><pubDate>Tue, 29 May 2007 16:19:11 GMT</pubDate></item><item><title><![CDATA[Reply to Dialogbox ohne Hauptfenster ? on Tue, 29 May 2007 16:30:32 GMT]]></title><description><![CDATA[<p>das ist ne resource..und nein es gibt keine anderen icons<br />
definiert in der resource.h</p>
<pre><code class="language-cpp">#define IDI_ICON1                       110
</code></pre>
<p>ich weis aber nicht, wofür das wichtig sein sollte, da das icon offensichtlich funktioniert (.exe icon, startleisten icon)<br />
nur wird halt das icon in der dialogbox nicht verändert <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/1294648</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1294648</guid><dc:creator><![CDATA[pixartist]]></dc:creator><pubDate>Tue, 29 May 2007 16:30:32 GMT</pubDate></item><item><title><![CDATA[Reply to Dialogbox ohne Hauptfenster ? on Tue, 29 May 2007 21:42:29 GMT]]></title><description><![CDATA[<p>Und wo Hast du das icon Geladen</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1294853</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1294853</guid><dc:creator><![CDATA[Ascharan]]></dc:creator><pubDate>Tue, 29 May 2007 21:42:29 GMT</pubDate></item><item><title><![CDATA[Reply to Dialogbox ohne Hauptfenster ? on Tue, 29 May 2007 21:49:27 GMT]]></title><description><![CDATA[<p>Warum ladest du das icon net so wie ichs dir gezeigt hab und warum machst du den selben aufruf zweimal</p>
<blockquote>
<pre><code class="language-cpp">BOOL CALLBACK DlgProc (HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
{
	switch(message)
	{
		case WM_INITDIALOG: 
		//[...]
            SendMessage(hDlg,WM_SETICON,ICON_SMALL,(LPARAM)IDI_ICON1);
		SendMessage(hDlg,WM_SETICON,ICON_BIG,(LPARAM)IDI_ICON1);
            //[...]
       }
}
</code></pre>
</blockquote>
<p>Das gehört sich numal so</p>
<pre><code class="language-cpp">[code]
hIcon = (HICON)LoadImage(hInst,MAKEINTRESOURCE(IDI_MAIN_ICON),IMAGE_ICON, 16, 16, LR_SHARED);
  // ICON setzen
  SendMessage(hWnd, WM_SETICON, ICON_SMALL, (LPARAM) hIcon);
[/code]
</code></pre>
<p><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="😃"
    /> <a class="plugin-mentions-user plugin-mentions-a" href="https://www.c-plusplus.net/forum/uid/12048">@Codefinder</a> sorry habs vergessen</p>
<pre><code>case WM_DESTROY: // Fenster Zerstoeren
DestroyIcon(hIcon);
PostQuitMessage(0);
break;
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1294855</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1294855</guid><dc:creator><![CDATA[Ascharan]]></dc:creator><pubDate>Tue, 29 May 2007 21:49:27 GMT</pubDate></item><item><title><![CDATA[Reply to Dialogbox ohne Hauptfenster ? on Tue, 29 May 2007 22:44:23 GMT]]></title><description><![CDATA[<p>Ascharan schrieb:</p>
<blockquote>
<p>Warum ladest du das icon net so wie ichs dir gezeigt hab und warum machst du den selben aufruf zweimal</p>
<blockquote>
<pre><code class="language-cpp">BOOL CALLBACK DlgProc (HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
{
	switch(message)
	{
		case WM_INITDIALOG: 
		//[...]
            SendMessage(hDlg,WM_SETICON,ICON_SMALL,(LPARAM)IDI_ICON1);
		SendMessage(hDlg,WM_SETICON,ICON_BIG,(LPARAM)IDI_ICON1);
            //[...]
       }
}
</code></pre>
</blockquote>
<p>Das gehört sich numal so</p>
<pre><code class="language-cpp">[code]
hIcon = (HICON)LoadImage(hInst,MAKEINTRESOURCE(IDI_MAIN_ICON),IMAGE_ICON, 16, 16, LR_SHARED);
  // ICON setzen
  SendMessage(hWnd, WM_SETICON, ICON_SMALL, (LPARAM) hIcon);
[/code]
</code></pre>
<p><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="😃"
    /> <a class="plugin-mentions-user plugin-mentions-a" href="https://www.c-plusplus.net/forum/uid/12048">@Codefinder</a> sorry habs vergessen</p>
<pre><code>case WM_DESTROY: // Fenster Zerstoeren
DestroyIcon(hIcon);
PostQuitMessage(0);
break;
</code></pre>
</blockquote>
<p>das ist nicht der gleiche aufruf 2 mal...einmal icon_big, einmal icon_small.<br />
Des weiteren, dein code macht keinen unterschied zu meinem, ausser dass du loadimage benutzt...warum kompliziert, wenns auch einfach geht?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1294876</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1294876</guid><dc:creator><![CDATA[pixartist]]></dc:creator><pubDate>Tue, 29 May 2007 22:44:23 GMT</pubDate></item><item><title><![CDATA[Reply to Dialogbox ohne Hauptfenster ? on Wed, 30 May 2007 08:45:40 GMT]]></title><description><![CDATA[<p>möcht mal wissen was du für probleme hast Das erste icon was du einbindest wird in die exe gesetzt wenn ich mich da net vertue du kannst meine grössen Angaben weglassen trotzdessen must du eben erst mal das icon mit MAKEINTRESOURCE(IDI_ICON) erstmal aus deiner resource Laden um es verwenden zu können wenn du das in Pur WinApi machst bsp. wenn du das fenster komplett Zeichnest brauchst du auch erst MAKEINTRESOURCE(IDI_ICON) um ein eigenes icon zu laden</p>
<p>bei mir siehts so aus <a href="http://www.asajia.com/projektvorlagen/projekts/applogo.jpg" rel="nofollow">Hier</a></p>
<p>übrigens ich lade mein icon mit LoadImage weil man es mir so gezeigt hat</p>
<pre><code>hIcon = (HICON)LoadImage(hInst,MAKEINTRESOURCE(IDI_MAIN_ICON),IMAGE_ICON, 16, 16, LR_SHARED);
</code></pre>
<p>damit lade ich das icon 16 x 16 px für die obere linke ecke</p>
<p><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>
]]></description><link>https://www.c-plusplus.net/forum/post/1295001</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1295001</guid><dc:creator><![CDATA[Ascharan]]></dc:creator><pubDate>Wed, 30 May 2007 08:45:40 GMT</pubDate></item><item><title><![CDATA[Reply to Dialogbox ohne Hauptfenster ? on Wed, 30 May 2007 16:35:55 GMT]]></title><description><![CDATA[<p>oO aber warum gehts denn mit loadimage und nicht so <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/1295392</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1295392</guid><dc:creator><![CDATA[pixartist]]></dc:creator><pubDate>Wed, 30 May 2007 16:35:55 GMT</pubDate></item><item><title><![CDATA[Reply to Dialogbox ohne Hauptfenster ? on Wed, 30 May 2007 22:02:16 GMT]]></title><description><![CDATA[<p>Würd mal behaupten das du nur die ID von deinem Icon Lädst und mit LoadImage Den Interpreter sagst das du ein ICON aus einer Resource laden willst bsp. ein icon aus einem verzeichnis, und MAKEINTRESOURCE aus der programm eigenen resource oder so. <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>
]]></description><link>https://www.c-plusplus.net/forum/post/1295628</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1295628</guid><dc:creator><![CDATA[Ascharan]]></dc:creator><pubDate>Wed, 30 May 2007 22:02:16 GMT</pubDate></item><item><title><![CDATA[Reply to Dialogbox ohne Hauptfenster ? on Wed, 30 May 2007 22:20:30 GMT]]></title><description><![CDATA[<p>pixartist schrieb:</p>
<blockquote>
<p>das ist ne resource..und nein es gibt keine anderen icons<br />
definiert in der resource.h</p>
<pre><code class="language-cpp">#define IDI_ICON1                       110
</code></pre>
<p>ich weis aber nicht, wofür das wichtig sein sollte, da das icon offensichtlich funktioniert (.exe icon, startleisten icon)<br />
nur wird halt das icon in der dialogbox nicht verändert <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>
</blockquote>
<p>Das es ne Resource ist, war klar. Es wird immer das Icon angezeigt, was die kleinste ID hat, deswegen hab ich gefragt. Du könntest testweise auchmal für IDI_ICON1 den Wert 101 bzw. 100 setzen (das sind eigentlich die Werte die von der IDE vorgegeben werden). Wobei ich eher nicht glaube, dass es was ändern würde; aber n Versuch isses Wert. (Vergiss nicht das gesamte Projekt zu bereinigen, also alle BuildFiles zu löschen).</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1295633</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1295633</guid><dc:creator><![CDATA[CodeFinder]]></dc:creator><pubDate>Wed, 30 May 2007 22:20:30 GMT</pubDate></item></channel></rss>