<?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[laufendes Programm von Taskleiste -&amp;gt; SystemTray]]></title><description><![CDATA[<p>Hallo</p>
<p>Ich hab ein kleines log-Tool geschrieben.<br />
Allerdings fällt störend auf das es ständig in der Taskleiste angezeigt wird.<br />
Gibt es eine möglichkeit dies zu ändern und es nur in der &quot;System Tray&quot; anzuzeigen?<br />
Wäre aber schön wenn das Programm dafür nicht zwangsläufig minimiert werden müßte. <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="🙄"
    /></p>
<p>Danke schonmal im voraus</p>
<p>sorka</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/85140/laufendes-programm-von-taskleiste-gt-systemtray</link><generator>RSS for Node</generator><lastBuildDate>Fri, 03 Jul 2026 04:29:42 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/85140.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 06 Sep 2004 09:08:30 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to laufendes Programm von Taskleiste -&amp;gt; SystemTray on Mon, 06 Sep 2004 09:08:30 GMT]]></title><description><![CDATA[<p>Hallo</p>
<p>Ich hab ein kleines log-Tool geschrieben.<br />
Allerdings fällt störend auf das es ständig in der Taskleiste angezeigt wird.<br />
Gibt es eine möglichkeit dies zu ändern und es nur in der &quot;System Tray&quot; anzuzeigen?<br />
Wäre aber schön wenn das Programm dafür nicht zwangsläufig minimiert werden müßte. <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="🙄"
    /></p>
<p>Danke schonmal im voraus</p>
<p>sorka</p>
]]></description><link>https://www.c-plusplus.net/forum/post/600498</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/600498</guid><dc:creator><![CDATA[sorka]]></dc:creator><pubDate>Mon, 06 Sep 2004 09:08:30 GMT</pubDate></item><item><title><![CDATA[Reply to laufendes Programm von Taskleiste -&amp;gt; SystemTray on Mon, 06 Sep 2004 13:54:38 GMT]]></title><description><![CDATA[<p>Verwende zunächst ein TrayIcon für dein Hauptformular, das wäre der erste Schritt. Wie du allerdings dein Prog aus der Taskleiste entfernst würde ich auch gerne Wissen.</p>
<p>Um dein TrayIcon zu testen verwende zunächst mal zum Testen folgendes:</p>
<pre><code class="language-cpp">void __fastcall TForm1::TrayIcon1Click(TObject *Sender)
{
  bool static w = true;

  if (w == true)
  {
  TrayIcon1-&gt;Minimize();  
  w = false;
  }
  else
  {
  TrayIcon1-&gt;Restore();
  w = true;
  }

}
</code></pre>
<p>Minimieren und Max kannst du per Button klick wie oben beschrieben verwenden, vergiss nicht das TrayIcon Visible auf false zu setzen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/600778</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/600778</guid><dc:creator><![CDATA[Zero01]]></dc:creator><pubDate>Mon, 06 Sep 2004 13:54:38 GMT</pubDate></item><item><title><![CDATA[Reply to laufendes Programm von Taskleiste -&amp;gt; SystemTray on Mon, 06 Sep 2004 18:50:42 GMT]]></title><description><![CDATA[<p>Mit &quot;Minimize()&quot; wird das nicht gehen, da selbst wenn man das TrayIcon Visible macht, das Programm trotzdem noch in der Taskleiste angezeigt wird. Nur wenn man es selber minimiert, sprich via BorderIcons, sieht man es nur in der Tray.</p>
<p><a href="http://www.c-plusplus.net/forum/viewtopic.php?t=59554&amp;highlight=trayicon" rel="nofollow">http://www.c-plusplus.net/forum/viewtopic.php?t=59554&amp;highlight=trayicon</a></p>
<p>Vielleicht kann dir das helfen, wenn nicht musst du hier mal was suchen. Bin hier auf jeden Fall schon mal irgendwo drauf gestoßen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/601053</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/601053</guid><dc:creator><![CDATA[PlayazOnly]]></dc:creator><pubDate>Mon, 06 Sep 2004 18:50:42 GMT</pubDate></item><item><title><![CDATA[Reply to laufendes Programm von Taskleiste -&amp;gt; SystemTray on Mon, 06 Sep 2004 19:02:41 GMT]]></title><description><![CDATA[<p>Achja, schau mal in die FAQ unter &quot;Forms&quot;.</p>
<p><a href="http://www.c-plusplus.net/forum/viewtopic.php?t=39305" rel="nofollow">http://www.c-plusplus.net/forum/viewtopic.php?t=39305</a></p>
<p>oder hier:</p>
<p><a href="http://www.c-plusplus.net/forum/viewtopic.php?t=12209&amp;postdays=0&amp;postorder=asc&amp;highlight=taskleiste&amp;start=0" rel="nofollow">http://www.c-plusplus.net/forum/viewtopic.php?t=12209&amp;postdays=0&amp;postorder=asc&amp;highlight=taskleiste&amp;start=0</a></p>
]]></description><link>https://www.c-plusplus.net/forum/post/601056</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/601056</guid><dc:creator><![CDATA[PlayazOnly]]></dc:creator><pubDate>Mon, 06 Sep 2004 19:02:41 GMT</pubDate></item><item><title><![CDATA[Reply to laufendes Programm von Taskleiste -&amp;gt; SystemTray on Tue, 07 Sep 2004 21:18:02 GMT]]></title><description><![CDATA[<p>danke jungs<br />
die tips werd ich mir gründlich vornehmen.<br />
in der zwischen zeit hab ich auch ein bisschen geforscht,<br />
und glaube das mir TApplication helfen könnte.<br />
nur wie weiß ich noch nicht.</p>
<p>wenn ich mehr weiß sag ich bescheid, für die die es interessiert.</p>
<p>greetz<br />
sorka</p>
]]></description><link>https://www.c-plusplus.net/forum/post/602026</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/602026</guid><dc:creator><![CDATA[sorka]]></dc:creator><pubDate>Tue, 07 Sep 2004 21:18:02 GMT</pubDate></item><item><title><![CDATA[Reply to laufendes Programm von Taskleiste -&amp;gt; SystemTray on Thu, 09 Sep 2004 08:53:39 GMT]]></title><description><![CDATA[<p><a class="plugin-mentions-user plugin-mentions-a" href="https://www.c-plusplus.net/forum/uid/7429">@PlayazOnly</a> <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="👍"
    /><br />
Danke.<br />
Dein erster Link war schon ein volltreffer. Die FAQ der bcbdev hatte genau den Fall beschrieben den ich gesucht hatte.<br />
Der effekt ist super.<br />
Nochmals vielen Dank</p>
<p>sorka</p>
]]></description><link>https://www.c-plusplus.net/forum/post/603026</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/603026</guid><dc:creator><![CDATA[sorka]]></dc:creator><pubDate>Thu, 09 Sep 2004 08:53:39 GMT</pubDate></item></channel></rss>