<?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[Wie kann ich (ohne MFC) die dialog-leiste weg machen???]]></title><description><![CDATA[<p>also:<br />
ich wollte gerne 2 sachen wissen:<br />
1. Wie kann ich (ohne MFC) die dialog-leiste weg/durchsichtig machen???<br />
2. Wie kann ich den ganzen Rahmen des dialogs weg/durchsichtig machen???</p>
<p>danke im vorraus!</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/117029/wie-kann-ich-ohne-mfc-die-dialog-leiste-weg-machen</link><generator>RSS for Node</generator><lastBuildDate>Fri, 03 Jul 2026 05:43:39 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/117029.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 02 Aug 2005 15:21:37 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Wie kann ich (ohne MFC) die dialog-leiste weg machen??? on Tue, 02 Aug 2005 15:21:37 GMT]]></title><description><![CDATA[<p>also:<br />
ich wollte gerne 2 sachen wissen:<br />
1. Wie kann ich (ohne MFC) die dialog-leiste weg/durchsichtig machen???<br />
2. Wie kann ich den ganzen Rahmen des dialogs weg/durchsichtig machen???</p>
<p>danke im vorraus!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/844537</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/844537</guid><dc:creator><![CDATA[K4!53R]]></dc:creator><pubDate>Tue, 02 Aug 2005 15:21:37 GMT</pubDate></item><item><title><![CDATA[Reply to Wie kann ich (ohne MFC) die dialog-leiste weg machen??? on Tue, 02 Aug 2005 16:41:43 GMT]]></title><description><![CDATA[<p>Ohne MFC bist du wohl im Win-Api-Forum besser aufgehoben.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/844607</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/844607</guid><dc:creator><![CDATA[estartu]]></dc:creator><pubDate>Tue, 02 Aug 2005 16:41:43 GMT</pubDate></item><item><title><![CDATA[Reply to Wie kann ich (ohne MFC) die dialog-leiste weg machen??? on Tue, 02 Aug 2005 16:41:56 GMT]]></title><description><![CDATA[<p>Dieser Thread wurde von Moderator/in <a href="http://www.c-plusplus.net/forum/profile.php?mode=viewprofile&amp;u=9713" rel="nofollow">estartu_de</a> aus dem Forum <a href="http://www.c-plusplus.net/forum/viewforum.php?f=1" rel="nofollow">MFC (Visual C++)</a> in das Forum <a href="http://www.c-plusplus.net/forum/viewforum.php?f=4" rel="nofollow">WinAPI</a> verschoben.</p>
<p>Im Zweifelsfall bitte auch folgende Hinweise beachten:<br />
<a href="http://www.c-plusplus.net/forum/viewtopic.php?t=39405" rel="nofollow">C/C++ Forum :: FAQ - Sonstiges :: Wohin mit meiner Frage?</a></p>
<p><em>Dieses Posting wurde automatisch erzeugt.</em></p>
]]></description><link>https://www.c-plusplus.net/forum/post/844608</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/844608</guid><dc:creator><![CDATA[C++ Forumbot]]></dc:creator><pubDate>Tue, 02 Aug 2005 16:41:56 GMT</pubDate></item><item><title><![CDATA[Reply to Wie kann ich (ohne MFC) die dialog-leiste weg machen??? on Tue, 02 Aug 2005 18:02:52 GMT]]></title><description><![CDATA[<p>So - wie kann ich jetzt dabei einfügen, dass ich die dialog-leiste und den rahmen nicht brauche???<br />
bitte - helft mir doch...</p>
<pre><code>int WINAPI WinMain(HINSTANCE hinstance, HINSTANCE hprevinstance, LPSTR lpcmdline, int ncmdshow)
{

	WNDCLASSEX window; //blank window, we're using the extended windows class (WNDCLASSEX)
	HWND hwnd; //window handle
	MSG msg; //message

	//now to fill in the window class
	window.cbClsExtra = 0; //extra class stuff, set to 0 for now
	window.cbSize = sizeof(WNDCLASSEX); //set to the size of the WINDOWCLASSEX structure
	window.cbWndExtra = 0; //extra class stuff, set to 0 for now
	window.hbrBackground = (HBRUSH)GetStockObject(GRAY_BRUSH);//BLACK_BRUSH); //sets the color of the brush to paint in, notice the type cast to HBRUSH, this is because GetStockObject() can be used for more tehn just getting the brushcolor
	window.hCursor = LoadCursor(NULL, IDC_ARROW); //cursor for your app, sets it to the standard arrow
	window.hIcon = LoadIcon(NULL, IDI_APPLICATION); //icon of your program

window.hIconSm = LoadIcon(NULL, IDI_APPLICATION); //icon that appears on the titlebar and when minimized
	window.hInstance = hinstance; //the application instance
	window.lpfnWndProc = WindowProc; //name of the function that takes care of the messages
	window.lpszClassName = &quot;WINCLASS1&quot;; //name of the class
	window.lpszMenuName = NULL; //menu, dont worry about this now (maybe in a later example, just set it to NULL
	window.style = CS_DBLCLKS | CS_OWNDC | CS_HREDRAW | CS_VREDRAW; //finally the style of the window, these are 
																	//the most used and should suffice

	//register the window class, notice we're using RegisterWindowEx() because we are using the extended window class
	if(!RegisterClassEx(&amp;window))
		return 0;

	//create the window
	if(!(hwnd = CreateWindowEx(
		NULL,//WS_EX_TRANSPARENT, //extended style
		&quot;WINCLASS1&quot;, //name of the class
		&quot;... by K4!53R&quot;, //title of the window
		WS_OVERLAPPEDWINDOW | WS_VISIBLE, //common flags, you DO want to see your window, right?
		0, 0, //initial x and y postion
		650, 515, //initial height and width
		NULL, //handle to parent, set to NULL so the desktop is the parent
		NULL, //handle to menu, we didnt use a menu now so dont worry about it
		hinstance, //instance of application
		NULL ))) //extra param
	return 0;

	//main event loop
	while(true)
	{

		//test if we have a message waiting for us in queue, if there is, take care of it
		if(PeekMessage(&amp;msg, NULL, 0, 0, PM_REMOVE))
		{

			//check if message is a WM_QUIT message
			if(msg.message == WM_QUIT)
				break;

			//translate any accelerator keys
			TranslateMessage(&amp;msg);

			//send message to the window proc 
			DispatchMessage(&amp;msg);

		}

	}//end while

	//use this to return to windows
	return(msg.wParam);

}//end WinMain
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/844681</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/844681</guid><dc:creator><![CDATA[K4!53R]]></dc:creator><pubDate>Tue, 02 Aug 2005 18:02:52 GMT</pubDate></item><item><title><![CDATA[Reply to Wie kann ich (ohne MFC) die dialog-leiste weg machen??? on Tue, 02 Aug 2005 18:10:37 GMT]]></title><description><![CDATA[<p>Benutze anstatt WS_OVERLAPEDWINDOW nur WS_OVERLAPED</p>
<p>WS_OVERLAPPEDWINDOW enthält nämlich unter anderem schon WS_CAPTION und WS_THICKFRAME</p>
]]></description><link>https://www.c-plusplus.net/forum/post/844689</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/844689</guid><dc:creator><![CDATA[_BackBONE_]]></dc:creator><pubDate>Tue, 02 Aug 2005 18:10:37 GMT</pubDate></item><item><title><![CDATA[Reply to Wie kann ich (ohne MFC) die dialog-leiste weg machen??? on Tue, 02 Aug 2005 18:40:23 GMT]]></title><description><![CDATA[<p>OK habe ich gemacht!<br />
das ändert aber nichts daran, dass ich eine dialogleiste<br />
und den ramen habe...<br />
nur das systemmenü ist verschwunden...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/844724</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/844724</guid><dc:creator><![CDATA[K4!53R]]></dc:creator><pubDate>Tue, 02 Aug 2005 18:40:23 GMT</pubDate></item><item><title><![CDATA[Reply to Wie kann ich (ohne MFC) die dialog-leiste weg machen??? on Tue, 02 Aug 2005 18:45:43 GMT]]></title><description><![CDATA[<p>OK...da war ich bischen zu voreilig</p>
<p>mit WS_POPUP müßste es gehen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/844729</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/844729</guid><dc:creator><![CDATA[_BackBONE_]]></dc:creator><pubDate>Tue, 02 Aug 2005 18:45:43 GMT</pubDate></item><item><title><![CDATA[Reply to Wie kann ich (ohne MFC) die dialog-leiste weg machen??? on Tue, 02 Aug 2005 19:04:19 GMT]]></title><description><![CDATA[<p>JAAA es funktioniert!<br />
danke danke danke!!!<br />
<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="🙂"
    /> <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="😃"
    /> <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="🙄"
    /> <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f576.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--sunglasses"
      title=":sunglasses:"
      alt="🕶"
    /> <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="🤡"
    /> <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f60b.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--face_savoring_food"
      title=":yum:"
      alt="😋"
    /> <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/844743</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/844743</guid><dc:creator><![CDATA[K4!53R]]></dc:creator><pubDate>Tue, 02 Aug 2005 19:04:19 GMT</pubDate></item></channel></rss>