<?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[Programm-Button während der Laufzeit aus Taskleiste entfernen]]></title><description><![CDATA[<p>Hallo,<br />
habe folgendes Problem:<br />
Ich möchte gerne den Programm-Button während der Laufzeit aus der Taskleiste entfernen.<br />
Dieses Vorgehen:</p>
<pre><code>DWORD dwExStyle=GetWindowLong(Application-&gt;Handle, GWL_EXSTYLE);
   dwExStyle |= WS_EX_TOOLWINDOW;
   SetWindowLong(Application-&gt;Handle, GWL_EXSTYLE, dwExStyle);
</code></pre>
<p>funktioniert nur direkt am Programmanfang.</p>
<p>Ich hoffe mir kann jemand weiterhelfen.</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/135350/programm-button-während-der-laufzeit-aus-taskleiste-entfernen</link><generator>RSS for Node</generator><lastBuildDate>Sat, 01 Aug 2026 12:44:28 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/135350.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 01 Feb 2006 14:27:17 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Programm-Button während der Laufzeit aus Taskleiste entfernen on Wed, 01 Feb 2006 14:27:17 GMT]]></title><description><![CDATA[<p>Hallo,<br />
habe folgendes Problem:<br />
Ich möchte gerne den Programm-Button während der Laufzeit aus der Taskleiste entfernen.<br />
Dieses Vorgehen:</p>
<pre><code>DWORD dwExStyle=GetWindowLong(Application-&gt;Handle, GWL_EXSTYLE);
   dwExStyle |= WS_EX_TOOLWINDOW;
   SetWindowLong(Application-&gt;Handle, GWL_EXSTYLE, dwExStyle);
</code></pre>
<p>funktioniert nur direkt am Programmanfang.</p>
<p>Ich hoffe mir kann jemand weiterhelfen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/983085</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/983085</guid><dc:creator><![CDATA[Angel666]]></dc:creator><pubDate>Wed, 01 Feb 2006 14:27:17 GMT</pubDate></item><item><title><![CDATA[Reply to Programm-Button während der Laufzeit aus Taskleiste entfernen on Wed, 01 Feb 2006 14:46:40 GMT]]></title><description><![CDATA[<blockquote>
<p>Certain window data is cached, so changes you make using SetWindowLong will not take effect until you call the SetWindowPos function. Specifically, if you change any of the frame styles, you must call SetWindowPos with the SWP_FRAMECHANGED flag for the cache to be updated properly.</p>
</blockquote>
]]></description><link>https://www.c-plusplus.net/forum/post/983107</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/983107</guid><dc:creator><![CDATA[Christian211]]></dc:creator><pubDate>Wed, 01 Feb 2006 14:46:40 GMT</pubDate></item><item><title><![CDATA[Reply to Programm-Button während der Laufzeit aus Taskleiste entfernen on Wed, 01 Feb 2006 15:04:03 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">ShowWindow(Application-&gt;Handle, SW_HIDE);
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/983127</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/983127</guid><dc:creator><![CDATA[Sunday]]></dc:creator><pubDate>Wed, 01 Feb 2006 15:04:03 GMT</pubDate></item><item><title><![CDATA[Reply to Programm-Button während der Laufzeit aus Taskleiste entfernen on Wed, 01 Feb 2006 17:39:46 GMT]]></title><description><![CDATA[<p>Leider funktionieren beide Lösungen nicht...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/983325</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/983325</guid><dc:creator><![CDATA[Angel666]]></dc:creator><pubDate>Wed, 01 Feb 2006 17:39:46 GMT</pubDate></item><item><title><![CDATA[Reply to Programm-Button während der Laufzeit aus Taskleiste entfernen on Wed, 01 Feb 2006 17:44:45 GMT]]></title><description><![CDATA[<p>ups, da habe ich wohl etwas vorschnell geantwortet.<br />
Die Sache mit ShowWindow(Application-&gt;Handle,SW_HIDE) hats gebracht.<br />
Vielen Dank für die Hilfe !</p>
]]></description><link>https://www.c-plusplus.net/forum/post/983329</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/983329</guid><dc:creator><![CDATA[Angel666]]></dc:creator><pubDate>Wed, 01 Feb 2006 17:44:45 GMT</pubDate></item></channel></rss>