<?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[Label besser aktualisieren]]></title><description><![CDATA[<p>Hi!</p>
<p>Vielleicht kennen einige von euch das Problem das bei schnellen Änderungen des Caption von Labels(Buttons etc...) Das jeweilige Objekt nicht mitkommt...</p>
<p>Zur Verdeutlichung dieser Quelltext:</p>
<pre><code class="language-cpp">for(int i = 0; i &lt; 300; i++)
{
Label1-&gt;Caption = i;
::Sleep(10);
}
</code></pre>
<p>Hier wird erst der Endwert angezeigt wenn alles fertig ist...</p>
<p>Kennt jemand da eine Lösung zu???</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/174070/label-besser-aktualisieren</link><generator>RSS for Node</generator><lastBuildDate>Fri, 14 Aug 2026 16:36:58 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/174070.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 22 Feb 2007 16:07:12 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Label besser aktualisieren on Thu, 22 Feb 2007 16:07:12 GMT]]></title><description><![CDATA[<p>Hi!</p>
<p>Vielleicht kennen einige von euch das Problem das bei schnellen Änderungen des Caption von Labels(Buttons etc...) Das jeweilige Objekt nicht mitkommt...</p>
<p>Zur Verdeutlichung dieser Quelltext:</p>
<pre><code class="language-cpp">for(int i = 0; i &lt; 300; i++)
{
Label1-&gt;Caption = i;
::Sleep(10);
}
</code></pre>
<p>Hier wird erst der Endwert angezeigt wenn alles fertig ist...</p>
<p>Kennt jemand da eine Lösung zu???</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1233433</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1233433</guid><dc:creator><![CDATA[Straightflush]]></dc:creator><pubDate>Thu, 22 Feb 2007 16:07:12 GMT</pubDate></item><item><title><![CDATA[Reply to Label besser aktualisieren on Thu, 22 Feb 2007 16:10:31 GMT]]></title><description><![CDATA[<p>Hallo</p>
<pre><code class="language-cpp">for(int i = 0; i &lt; 300; i++)
{
Label1-&gt;Caption = i;
Application-&gt;ProcessMessages(); 
::Sleep(10);
}
</code></pre>
<p>bis bald<br />
akari</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1233437</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1233437</guid><dc:creator><![CDATA[akari]]></dc:creator><pubDate>Thu, 22 Feb 2007 16:10:31 GMT</pubDate></item></channel></rss>