<?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[Fenster Sichtbar - aber nicht in der Taskleiste]]></title><description><![CDATA[<p>huhu...</p>
<p>ich habe zur zeit ein kleines fenster (mit windows-skinning) welches<br />
sich über den desktop bewegt (das fenster ist trnasparent und man sieht nur eine kleine figur...)</p>
<p>nur wenn sich die figur bewegt soll es natürlich so aussehen, als sei es kein fenster. wie kann ich das fenster sichtbar lassen - jedoch aus der taskleiste entfernen?</p>
<p>danke...</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/148680/fenster-sichtbar-aber-nicht-in-der-taskleiste</link><generator>RSS for Node</generator><lastBuildDate>Fri, 17 Jul 2026 08:10:51 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/148680.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 29 May 2006 12:28:49 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Fenster Sichtbar - aber nicht in der Taskleiste on Mon, 29 May 2006 12:28:49 GMT]]></title><description><![CDATA[<p>huhu...</p>
<p>ich habe zur zeit ein kleines fenster (mit windows-skinning) welches<br />
sich über den desktop bewegt (das fenster ist trnasparent und man sieht nur eine kleine figur...)</p>
<p>nur wenn sich die figur bewegt soll es natürlich so aussehen, als sei es kein fenster. wie kann ich das fenster sichtbar lassen - jedoch aus der taskleiste entfernen?</p>
<p>danke...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1067325</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1067325</guid><dc:creator><![CDATA[K.Wüstkamp]]></dc:creator><pubDate>Mon, 29 May 2006 12:28:49 GMT</pubDate></item><item><title><![CDATA[Reply to Fenster Sichtbar - aber nicht in der Taskleiste on Mon, 29 May 2006 13:04:09 GMT]]></title><description><![CDATA[<p>Hier gibt es zwei Möglichkeiten:<br />
1. WS_EX_TOOLWINDOW Extended-Style<br />
2. Du erzeugst eine Hidden-Window, und machst Dein eigentlichen Window zum Child dieses Hidden-Windows...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1067363</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1067363</guid><dc:creator><![CDATA[Jochen Kalmbach]]></dc:creator><pubDate>Mon, 29 May 2006 13:04:09 GMT</pubDate></item><item><title><![CDATA[Reply to Fenster Sichtbar - aber nicht in der Taskleiste on Mon, 29 May 2006 15:11:19 GMT]]></title><description><![CDATA[<p>hmm ich habe es mal bei ein par offenen fenstern<br />
versucht allerdings kommt was anderes bei rum <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>die buttons der fenster in der taskleiste haben kein symbol mehr und<br />
reagieren auch ganz anders als normal. sind aber immernoch da!</p>
<p>ich habs mit diesem code gemacht:</p>
<pre><code>SetWindowLong(hWnd,GWL_EXSTYLE,WS_EX_TOOLWINDOW);
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1067469</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1067469</guid><dc:creator><![CDATA[K.Wüstkamp]]></dc:creator><pubDate>Mon, 29 May 2006 15:11:19 GMT</pubDate></item><item><title><![CDATA[Reply to Fenster Sichtbar - aber nicht in der Taskleiste on Mon, 29 May 2006 16:26:41 GMT]]></title><description><![CDATA[<p>Upps... sorry... es geht natürlich viel einfacher:<br />
Nimm den Style &quot;WS_EX_APPWINDOW&quot; weg...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1067511</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1067511</guid><dc:creator><![CDATA[Jochen Kalmbach]]></dc:creator><pubDate>Mon, 29 May 2006 16:26:41 GMT</pubDate></item><item><title><![CDATA[Reply to Fenster Sichtbar - aber nicht in der Taskleiste on Mon, 29 May 2006 19:00:55 GMT]]></title><description><![CDATA[<p>naja ich finde diesen ausdruck WS_EX_APPWINDOW nirgens!</p>
<p>ich arbeite auch mit windows-skinning und meine funktion zum<br />
generieren des fensters mit dem eigenen skin ist folgende:</p>
<pre><code>// ------------------------------------------------------------------------
// A Basic, still smart window creation function.
// ------------------------------------------------------------------------
bool MakeWindow(int iWidth, int iHeight)
{
  // our window class
  WNDCLASS wndWc;

  // ---------------------------------------------------------
  // fill window class members
  // ---------------------------------------------------------
  wndWc.style = CS_OWNDC;
  wndWc.lpfnWndProc = (WNDPROC) WndProc;
  wndWc.cbClsExtra = 0;
  wndWc.cbWndExtra = 0;
  wndWc.hInstance = GetModuleHandle(NULL);
  wndWc.hIcon = NULL;
  wndWc.hCursor = LoadCursor(0, IDC_ARROW);
  wndWc.hbrBackground = NULL;
  wndWc.lpszMenuName = NULL;
  wndWc.lpszClassName = &quot;w32skin&quot;;

  // register class
  if (!RegisterClass(&amp;wndWc)) return false;
  // ---------------------------------------------------------

  // get actual screen resolution
  int iSw = (WORD)GetSystemMetrics(SM_CXSCREEN);       // width
  int iSh = (WORD)GetSystemMetrics(SM_CYSCREEN);       // height

  // make a rectangle on the center of the screen
  RECT rc = { (iSw - iWidth)/2, (iSh - iHeight)/2, iWidth, iHeight };

  // create the window.
  // note the WS_POPUP flag, no caption, no borders, no nothing.
  hWnd = CreateWindow(&quot;w32skin&quot;, &quot;w32skin&quot;,
                      WS_POPUP,
                      rc.left,rc.top, iWidth,iHeight,
                      NULL, NULL, GetModuleHandle(NULL), NULL);

  // return result
  return (hWnd?true:false);
}
</code></pre>
<p>habe alles von hier:<br />
<a href="http://www.flipcode.com/articles/article_win32skins.shtml" rel="nofollow">http://www.flipcode.com/articles/article_win32skins.shtml</a></p>
<p>danke!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1067616</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1067616</guid><dc:creator><![CDATA[K.Wüstkamp]]></dc:creator><pubDate>Mon, 29 May 2006 19:00:55 GMT</pubDate></item><item><title><![CDATA[Reply to Fenster Sichtbar - aber nicht in der Taskleiste on Mon, 29 May 2006 19:28:39 GMT]]></title><description><![CDATA[<p>tjo ... wo ist das Problem ?! GetWindowLong SetWindowLong ...</p>
<p>Oder halt einfach mit WNDCLASSEX und CreateWindowEx ... dann als Extended Style WS_EX_TOOLWINDOW angeben und schon, oh wunder... es geht... wie Jochen aber schon sagte -.-</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1067642</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1067642</guid><dc:creator><![CDATA[*D*Evil]]></dc:creator><pubDate>Mon, 29 May 2006 19:28:39 GMT</pubDate></item><item><title><![CDATA[Reply to Fenster Sichtbar - aber nicht in der Taskleiste on Mon, 29 May 2006 19:43:21 GMT]]></title><description><![CDATA[<p>oh man ich habs irgendwie verdreht <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>danke an euch! klappt super!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1067654</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1067654</guid><dc:creator><![CDATA[K.Wüstkamp]]></dc:creator><pubDate>Mon, 29 May 2006 19:43:21 GMT</pubDate></item></channel></rss>