<?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[Im SpeedButton Glyph und Caption abwechselnd anzeigen]]></title><description><![CDATA[<p>Hallo,</p>
<p>ich habe mal wieder ein Problem, bei dem ich nicht allein weiter komme.<br />
Ich möchte auf einem SpeedButton entweder ein Glyph oder das Caption anzeigen.</p>
<p>Hat einer eine Ahnung ob das geht?</p>
<p>Gruß DG2003</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/209156/im-speedbutton-glyph-und-caption-abwechselnd-anzeigen</link><generator>RSS for Node</generator><lastBuildDate>Thu, 20 Aug 2026 10:25:39 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/209156.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 27 Mar 2008 12:28:32 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Im SpeedButton Glyph und Caption abwechselnd anzeigen on Thu, 27 Mar 2008 12:28:32 GMT]]></title><description><![CDATA[<p>Hallo,</p>
<p>ich habe mal wieder ein Problem, bei dem ich nicht allein weiter komme.<br />
Ich möchte auf einem SpeedButton entweder ein Glyph oder das Caption anzeigen.</p>
<p>Hat einer eine Ahnung ob das geht?</p>
<p>Gruß DG2003</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1481326</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1481326</guid><dc:creator><![CDATA[DG2003]]></dc:creator><pubDate>Thu, 27 Mar 2008 12:28:32 GMT</pubDate></item><item><title><![CDATA[Reply to Im SpeedButton Glyph und Caption abwechselnd anzeigen on Thu, 27 Mar 2008 12:47:04 GMT]]></title><description><![CDATA[<p>Hallo</p>
<p>Wo ist das Problem? Du kannst die Eigenschaften Caption und Glyph doch unabhängig voneinander belegen bzw. leer lassen, auch nachträglich zur Laufzeit.</p>
<p>bis bald<br />
akari</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1481343</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1481343</guid><dc:creator><![CDATA[akari]]></dc:creator><pubDate>Thu, 27 Mar 2008 12:47:04 GMT</pubDate></item><item><title><![CDATA[Reply to Im SpeedButton Glyph und Caption abwechselnd anzeigen on Thu, 27 Mar 2008 12:53:41 GMT]]></title><description><![CDATA[<p>akari,</p>
<p>danke für diesen Tip. Mit der Idee hatte ich auch schon gespielt. Aber wie lösche ich mein Glyph zur Laufzeit und wie stelle ich es wieder her. Ich habe nichts darüber gefunden</p>
<p>DG2003</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1481353</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1481353</guid><dc:creator><![CDATA[DG2003]]></dc:creator><pubDate>Thu, 27 Mar 2008 12:53:41 GMT</pubDate></item><item><title><![CDATA[Reply to Im SpeedButton Glyph und Caption abwechselnd anzeigen on Thu, 27 Mar 2008 13:03:29 GMT]]></title><description><![CDATA[<p>Hallo</p>
<p>Löschen</p>
<pre><code class="language-cpp">SpeedButton1-&gt;Glyph-&gt;Assign(0);
</code></pre>
<p>Aus Bitmap-Datei Laden</p>
<pre><code class="language-cpp">SpeedButton1-&gt;Glyph-&gt;LoadFromFile(...);
</code></pre>
<p>bis bald<br />
akari</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1481362</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1481362</guid><dc:creator><![CDATA[akari]]></dc:creator><pubDate>Thu, 27 Mar 2008 13:03:29 GMT</pubDate></item><item><title><![CDATA[Reply to Im SpeedButton Glyph und Caption abwechselnd anzeigen on Thu, 27 Mar 2008 13:07:49 GMT]]></title><description><![CDATA[<p>Danke,</p>
<p>kann ich auch das Glyph auch auslesen und von dort wieder zurückladen?</p>
<p>DG2003</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1481371</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1481371</guid><dc:creator><![CDATA[DG2003]]></dc:creator><pubDate>Thu, 27 Mar 2008 13:07:49 GMT</pubDate></item><item><title><![CDATA[Reply to Im SpeedButton Glyph und Caption abwechselnd anzeigen on Thu, 27 Mar 2008 13:10:37 GMT]]></title><description><![CDATA[<p>Hallo</p>
<p>Du kannst es auch in ein manuell erzeugtes und verwaltetes TBitmap kopieren und nachher wieder zurückkopieren (mit dem schon gezeigten Assign).</p>
<p>Aber besser ist es wenn du gleich die ganzen benötigten Bitmaps für alle Buttons in einer festen TImageList einbindest und immer von dort aus in die TSpeedButtons kopierst.</p>
<p>bis bald<br />
akari</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1481375</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1481375</guid><dc:creator><![CDATA[akari]]></dc:creator><pubDate>Thu, 27 Mar 2008 13:10:37 GMT</pubDate></item><item><title><![CDATA[Reply to Im SpeedButton Glyph und Caption abwechselnd anzeigen on Thu, 27 Mar 2008 13:13:44 GMT]]></title><description><![CDATA[<p>Nachtrag,</p>
<p>mit auslesen meinte ich in ein Array. Anschließend möchte ich es wieder von dort zurückspeichern</p>
<p>DG2003</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1481378</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1481378</guid><dc:creator><![CDATA[DG2003]]></dc:creator><pubDate>Thu, 27 Mar 2008 13:13:44 GMT</pubDate></item><item><title><![CDATA[Reply to Im SpeedButton Glyph und Caption abwechselnd anzeigen on Thu, 27 Mar 2008 13:16:48 GMT]]></title><description><![CDATA[<p>Danke,</p>
<p>unsere Sendungen haben sich überschnitten. Ich habe mich für die TImageList entschieden.</p>
<p>Grüße DG2003</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1481384</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1481384</guid><dc:creator><![CDATA[DG2003]]></dc:creator><pubDate>Thu, 27 Mar 2008 13:16:48 GMT</pubDate></item><item><title><![CDATA[Reply to Im SpeedButton Glyph und Caption abwechselnd anzeigen on Thu, 27 Mar 2008 13:17:28 GMT]]></title><description><![CDATA[<p>Hallo</p>
<p>Ja das hab ich schon verstanden. Du brauchst eben ein Array auf TBitmap-Pointern.<br />
Und dafür kannst du dann gleich TImageList nehmen.</p>
<p>bis bald<br />
akari</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1481386</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1481386</guid><dc:creator><![CDATA[akari]]></dc:creator><pubDate>Thu, 27 Mar 2008 13:17:28 GMT</pubDate></item><item><title><![CDATA[Reply to Im SpeedButton Glyph und Caption abwechselnd anzeigen on Thu, 27 Mar 2008 13:29:19 GMT]]></title><description><![CDATA[<p>Hallo,</p>
<p>hatte ich auch so verstanden.</p>
<p>Noch einmal vielen Dank und bis zum nächsten Problem<br />
DG2003</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1481400</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1481400</guid><dc:creator><![CDATA[DG2003]]></dc:creator><pubDate>Thu, 27 Mar 2008 13:29:19 GMT</pubDate></item></channel></rss>