<?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[Neues Fenster erstellen]]></title><description><![CDATA[<p>Hallo,</p>
<p>ich möchte zur Laufzeit ein neues Fenster erstellen. Jetzt weiss ich leider nicht wie!? Ich habe einige Forumsbeiträge gelesen und bin auf folgenden Ansatz gestoßen:</p>
<pre><code class="language-cpp">HWND hWnd = CreateWindowEx(WS_EX_STATICEDGE, 
						   TEXT (&quot;Test&quot;), 
						   NULL, 
						   WS_VISIBLE, 
						   0,0,200,200, 
						   NULL, //hwnd, 
						   NULL, 
						   NULL, //hInstance, 
						   NULL 
							);
</code></pre>
<p>!? Wie schaffe ich es nun das neue Fenster anzuzeigen. Hier fehlt noch etwas, oder?</p>
<p>Merci</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/78316/neues-fenster-erstellen</link><generator>RSS for Node</generator><lastBuildDate>Wed, 22 Apr 2026 01:35:50 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/78316.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 30 Jun 2004 11:34:11 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Neues Fenster erstellen on Wed, 30 Jun 2004 11:34:11 GMT]]></title><description><![CDATA[<p>Hallo,</p>
<p>ich möchte zur Laufzeit ein neues Fenster erstellen. Jetzt weiss ich leider nicht wie!? Ich habe einige Forumsbeiträge gelesen und bin auf folgenden Ansatz gestoßen:</p>
<pre><code class="language-cpp">HWND hWnd = CreateWindowEx(WS_EX_STATICEDGE, 
						   TEXT (&quot;Test&quot;), 
						   NULL, 
						   WS_VISIBLE, 
						   0,0,200,200, 
						   NULL, //hwnd, 
						   NULL, 
						   NULL, //hInstance, 
						   NULL 
							);
</code></pre>
<p>!? Wie schaffe ich es nun das neue Fenster anzuzeigen. Hier fehlt noch etwas, oder?</p>
<p>Merci</p>
]]></description><link>https://www.c-plusplus.net/forum/post/550270</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/550270</guid><dc:creator><![CDATA[EdiRitter]]></dc:creator><pubDate>Wed, 30 Jun 2004 11:34:11 GMT</pubDate></item><item><title><![CDATA[Reply to Neues Fenster erstellen on Wed, 30 Jun 2004 11:51:17 GMT]]></title><description><![CDATA[<p>hast du das fenster schon im dialogfeldeditor gebastelt ?? oder willst du das dynamisch erzeugen ?</p>
<p>vermute du hast es schon erstellt, ne !?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/550281</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/550281</guid><dc:creator><![CDATA[Red Skall]]></dc:creator><pubDate>Wed, 30 Jun 2004 11:51:17 GMT</pubDate></item><item><title><![CDATA[Reply to Neues Fenster erstellen on Wed, 30 Jun 2004 12:07:49 GMT]]></title><description><![CDATA[<blockquote>
<p>hast du das fenster schon im dialogfeldeditor gebastelt</p>
</blockquote>
<p>Nein, habe ich nicht.</p>
<p>Ich möchte ein transparentes Fenster erzeugen. Es sollte dynamisch sein..</p>
<p>MfG</p>
]]></description><link>https://www.c-plusplus.net/forum/post/550297</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/550297</guid><dc:creator><![CDATA[EdiRitter]]></dc:creator><pubDate>Wed, 30 Jun 2004 12:07:49 GMT</pubDate></item><item><title><![CDATA[Reply to Neues Fenster erstellen on Wed, 30 Jun 2004 14:46:47 GMT]]></title><description><![CDATA[<p>Servus,</p>
<p>Forumsuche: &quot;createwindowex&quot; -&gt; <a href="http://www.c-plusplus.net/forum/viewtopic.php?t=74439&amp;highlight=createwindowex" rel="nofollow">http://www.c-plusplus.net/forum/viewtopic.php?t=74439&amp;highlight=createwindowex</a></p>
<p>hilft dir bestimmt weiter...</p>
<p>*winke*<br />
Hellsgore</p>
]]></description><link>https://www.c-plusplus.net/forum/post/550367</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/550367</guid><dc:creator><![CDATA[Hellsgore]]></dc:creator><pubDate>Wed, 30 Jun 2004 14:46:47 GMT</pubDate></item><item><title><![CDATA[Reply to Neues Fenster erstellen on Thu, 01 Jul 2004 13:24:27 GMT]]></title><description><![CDATA[<p>Soo..</p>
<p>Ich habe eine SDI Anwendung. Wie schon gesagt möchte ich darüber ein transparentes Fenster legen.</p>
<p>Inzwischen habe ich bereits eine eigene Window Klasse: <strong>CInscriptionWnd</strong></p>
<pre><code class="language-cpp">void CMoniView::CreateInscriptionWnd()
{
CRect rect;
GetClientRect(rect);

m_wndInscription.CreateEx(WS_EX_TRANSPARENT,
							   AfxRegisterWndClass(0),
							   _T(&quot;&quot;),
							   WS_VISIBLE,
							   0,
							   0,
							   rect.Width(),
							   rect.Height(),
							   NULL,
							   0); 

	if (m_wndInscription.m_hWnd)
	{
		m_wndInscription.ShowWindow(SW_SHOW);
		m_wndInscription.Invalidate();
	}

}
</code></pre>
<p>Es funzt <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f62e.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--face_with_open_mouth"
      title=":open_mouth:"
      alt="😮"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/550772</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/550772</guid><dc:creator><![CDATA[EdiRitter]]></dc:creator><pubDate>Thu, 01 Jul 2004 13:24:27 GMT</pubDate></item></channel></rss>