<?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[CEdit scorll prpblem]]></title><description><![CDATA[<p>Hallo,</p>
<p>ich habe ein CEdit (Mehrzeilich) in den kommen immer untereinander neue statusanzeigen.</p>
<p>das problem bestecht darin das wen ich den scrollbalken nachunten ziche sprinkt der sofort nach den näksten texthinzufügen wider nachoben.</p>
<p>ich habe esn mit GetScrollPos(), SetScrollPos() probirt.<br />
der sptinkt zwar kurts nachunte aber er bleibt nicht.</p>
<p>Wie kann ich das machen???</p>
<p>MFG TaccoGo</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/84659/cedit-scorll-prpblem</link><generator>RSS for Node</generator><lastBuildDate>Sun, 12 Apr 2026 11:02:10 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/84659.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 01 Sep 2004 11:23:59 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to CEdit scorll prpblem on Wed, 01 Sep 2004 11:23:59 GMT]]></title><description><![CDATA[<p>Hallo,</p>
<p>ich habe ein CEdit (Mehrzeilich) in den kommen immer untereinander neue statusanzeigen.</p>
<p>das problem bestecht darin das wen ich den scrollbalken nachunten ziche sprinkt der sofort nach den näksten texthinzufügen wider nachoben.</p>
<p>ich habe esn mit GetScrollPos(), SetScrollPos() probirt.<br />
der sptinkt zwar kurts nachunte aber er bleibt nicht.</p>
<p>Wie kann ich das machen???</p>
<p>MFG TaccoGo</p>
]]></description><link>https://www.c-plusplus.net/forum/post/596844</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/596844</guid><dc:creator><![CDATA[TaccoGo]]></dc:creator><pubDate>Wed, 01 Sep 2004 11:23:59 GMT</pubDate></item><item><title><![CDATA[Reply to CEdit scorll prpblem on Wed, 01 Sep 2004 11:36:59 GMT]]></title><description><![CDATA[<p>Code-Schipsel aus einem alten Test-Projekt (verlängert bei Klick auf OK-Button den Text im Editfeld):</p>
<pre><code class="language-cpp">// Test vom Auto-Scroll-Editfeld
void CScrollEditDlg::OnOk()
{
	CString txt;
	GetDlgItemText(IDC_EDIT1, txt);		// den Text aus dem Editfeld auslesen

	int nLaenge = txt.GetLength();		// Textlänge bestimmen

	if(nLaenge % 5 == 0)				// zu Testzwecken den String auf Buttonklick verlängern
		txt += &quot; &quot;;
	else
		txt += &quot;X&quot;;

	SetDlgItemText(IDC_EDIT1, txt);		// den neuen Text in das Editfeld schreiben

	((CEdit*)GetDlgItem(IDC_EDIT1))-&gt;SetSel(nLaenge+1, nLaenge+1);	// Cursor an das Ende setzen

	((CEdit*)GetDlgItem(IDC_EDIT1))-&gt;SetFocus();
//	((CEdit*)GetDlgItem(IDC_EDIT1))-&gt;SetSel(0, -1);	// alles markieren
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/596863</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/596863</guid><dc:creator><![CDATA[isabeau]]></dc:creator><pubDate>Wed, 01 Sep 2004 11:36:59 GMT</pubDate></item><item><title><![CDATA[Reply to CEdit scorll prpblem on Wed, 01 Sep 2004 11:50:56 GMT]]></title><description><![CDATA[<p>Danke</p>
<p>auser das man ein leichtes flakern bemerkt ist das super.</p>
<p>MFG TaccoGo</p>
]]></description><link>https://www.c-plusplus.net/forum/post/596884</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/596884</guid><dc:creator><![CDATA[TaccoGo]]></dc:creator><pubDate>Wed, 01 Sep 2004 11:50:56 GMT</pubDate></item><item><title><![CDATA[Reply to CEdit scorll prpblem on Wed, 01 Sep 2004 12:07:04 GMT]]></title><description><![CDATA[<p>Hallo,</p>
<p>gibt es ne möglichkeit das der nicht nur an das ende spting sonder dort bleibt wo ich als letztes war???</p>
<p>MFG TaccoGo</p>
]]></description><link>https://www.c-plusplus.net/forum/post/596910</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/596910</guid><dc:creator><![CDATA[TaccoGo]]></dc:creator><pubDate>Wed, 01 Sep 2004 12:07:04 GMT</pubDate></item></channel></rss>