<?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[SetDlgItemText(IDC_EDIT1, &amp;quot;hallo&amp;quot;); ???]]></title><description><![CDATA[<p>Hi</p>
<p>Wie schaffe ich es das hier nicht der Text &quot;hallo&quot; in die Textbox geschrieben wird, sondern die Variable &quot;i&quot; die einen long Wert enthält?</p>
<p>SetDlgItemText(IDC_EDIT1, &quot;hallo&quot;);</p>
<p>danke</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/85631/setdlgitemtext-idc_edit1-quot-hallo-quot</link><generator>RSS for Node</generator><lastBuildDate>Sat, 11 Apr 2026 19:52:44 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/85631.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 11 Sep 2004 10:29:19 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to SetDlgItemText(IDC_EDIT1, &amp;quot;hallo&amp;quot;); ??? on Sat, 11 Sep 2004 10:29:19 GMT]]></title><description><![CDATA[<p>Hi</p>
<p>Wie schaffe ich es das hier nicht der Text &quot;hallo&quot; in die Textbox geschrieben wird, sondern die Variable &quot;i&quot; die einen long Wert enthält?</p>
<p>SetDlgItemText(IDC_EDIT1, &quot;hallo&quot;);</p>
<p>danke</p>
]]></description><link>https://www.c-plusplus.net/forum/post/604439</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/604439</guid><dc:creator><![CDATA[Ther]]></dc:creator><pubDate>Sat, 11 Sep 2004 10:29:19 GMT</pubDate></item><item><title><![CDATA[Reply to SetDlgItemText(IDC_EDIT1, &amp;quot;hallo&amp;quot;); ??? on Sat, 11 Sep 2004 11:06:44 GMT]]></title><description><![CDATA[<p>SetDlgItemInt müsste die Funktion heißen</p>
<p>Edit:</p>
<p>Die Syntax sieht so aus</p>
<pre><code class="language-cpp">BOOL SetDlgItemInt(
    HWND hDlg,
    int nIDDlgItem,
    UINT uValue,
    BOOL bSigned
);
</code></pre>
<p>Mit dem FLag bSigned gibts du an ob der Wert signed(true) oder unsigned(false) ist.</p>
<p>Edit2:</p>
<p>Es gibt noch die Methode CWnd::SetDlgItemInt die sieht so aus</p>
<pre><code class="language-cpp">void SetDlgItemInt( 
int nID, 
UINT nValue, 
BOOL bSigned = TRUE );
</code></pre>
<p>ist vllt. eher was du suchst, da wir ja im MFC Forum sind <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face"
      title=":)"
      alt="🙂"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/604464</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/604464</guid><dc:creator><![CDATA[SirLant]]></dc:creator><pubDate>Sat, 11 Sep 2004 11:06:44 GMT</pubDate></item><item><title><![CDATA[Reply to SetDlgItemText(IDC_EDIT1, &amp;quot;hallo&amp;quot;); ??? on Sat, 11 Sep 2004 17:26:17 GMT]]></title><description><![CDATA[<p>Hi</p>
<p>Funktionert Prima, aber jetzt noch ne Frage:</p>
<p>So wird jetzt in einer Textbox immer hochgezählt 1,2,3,4 usw... aber jetzt wird die Schleife immer bis zum Ende durchgezählt und dann erst die letzt Zahl ausgegeben.</p>
<p>Wie kann ich machen, das immer das aktuelle angezeigt wird, also<br />
1 dann 2 usw...</p>
<p>danke</p>
]]></description><link>https://www.c-plusplus.net/forum/post/604715</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/604715</guid><dc:creator><![CDATA[Ther]]></dc:creator><pubDate>Sat, 11 Sep 2004 17:26:17 GMT</pubDate></item></channel></rss>