<?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[Integerzahl in View::OnDraw darstellen]]></title><description><![CDATA[<p>Hi,</p>
<p>Text als String darstellen ist kein Problem, aber wie gebe ich einen Int-Wert im View aus?</p>
<p>Grüße</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/151085/integerzahl-in-view-ondraw-darstellen</link><generator>RSS for Node</generator><lastBuildDate>Wed, 22 Jul 2026 22:33:36 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/151085.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 22 Jun 2006 22:10:44 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Integerzahl in View::OnDraw darstellen on Thu, 22 Jun 2006 22:10:44 GMT]]></title><description><![CDATA[<p>Hi,</p>
<p>Text als String darstellen ist kein Problem, aber wie gebe ich einen Int-Wert im View aus?</p>
<p>Grüße</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1083435</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1083435</guid><dc:creator><![CDATA[toh]]></dc:creator><pubDate>Thu, 22 Jun 2006 22:10:44 GMT</pubDate></item><item><title><![CDATA[Reply to Integerzahl in View::OnDraw darstellen on Thu, 22 Jun 2006 23:02:31 GMT]]></title><description><![CDATA[<p>Schau Dir mal CString::Format(...) an. Arbeitet bezüglich Formatierung wie printf(...).</p>
<pre><code class="language-cpp">int a, b;
CString str;
str.Format(&quot;Zahl1: %i  Zahl2: %i&quot;, a, b); 
MessageBox(str);
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1083463</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1083463</guid><dc:creator><![CDATA[Erhard Henkes]]></dc:creator><pubDate>Thu, 22 Jun 2006 23:02:31 GMT</pubDate></item></channel></rss>