<?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[anzahl der nicht beschriebenen Zeilen]]></title><description><![CDATA[<p>hi,<br />
kann ich schnell die anzahl der nicht beschriebenen Zeilen in einem richedit herausbekommen?</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/79471/anzahl-der-nicht-beschriebenen-zeilen</link><generator>RSS for Node</generator><lastBuildDate>Sun, 19 Apr 2026 02:03:29 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/79471.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 11 Jul 2004 18:18:26 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to anzahl der nicht beschriebenen Zeilen on Sun, 11 Jul 2004 18:18:26 GMT]]></title><description><![CDATA[<p>hi,<br />
kann ich schnell die anzahl der nicht beschriebenen Zeilen in einem richedit herausbekommen?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/558304</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/558304</guid><dc:creator><![CDATA[kreen]]></dc:creator><pubDate>Sun, 11 Jul 2004 18:18:26 GMT</pubDate></item><item><title><![CDATA[Reply to anzahl der nicht beschriebenen Zeilen on Sun, 11 Jul 2004 18:35:40 GMT]]></title><description><![CDATA[<p>Du könntest die Zeilen nacheinander auslesen und immer wenn nichts drin ist nen Counter eins hochzählen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/558316</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/558316</guid><dc:creator><![CDATA[Trikor]]></dc:creator><pubDate>Sun, 11 Jul 2004 18:35:40 GMT</pubDate></item><item><title><![CDATA[Reply to anzahl der nicht beschriebenen Zeilen on Sun, 11 Jul 2004 18:38:48 GMT]]></title><description><![CDATA[<p>Genau das hatte ich schon versucht, hat aber nicht gefunzt</p>
]]></description><link>https://www.c-plusplus.net/forum/post/558318</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/558318</guid><dc:creator><![CDATA[kreen]]></dc:creator><pubDate>Sun, 11 Jul 2004 18:38:48 GMT</pubDate></item><item><title><![CDATA[Reply to anzahl der nicht beschriebenen Zeilen on Sun, 11 Jul 2004 18:44:26 GMT]]></title><description><![CDATA[<p>so hab ich versucht...</p>
<pre><code class="language-cpp">int nPos=0,nAnzahl=0;
while(nPos&lt;=GetRichEditCtrl().GetLineCount())
{
if(GetRichEditCtrl().LineLenght(nPos)==0){nAnzahl=nAnzahl+1;}
nPos=nPos+1;
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/558319</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/558319</guid><dc:creator><![CDATA[kreen]]></dc:creator><pubDate>Sun, 11 Jul 2004 18:44:26 GMT</pubDate></item><item><title><![CDATA[Reply to anzahl der nicht beschriebenen Zeilen on Sun, 11 Jul 2004 18:55:42 GMT]]></title><description><![CDATA[<p>Müsstest du nicht einfach nach dem vorkommen von &quot;\r\n\r\n&quot; suchen ?</p>
<p>Devil</p>
]]></description><link>https://www.c-plusplus.net/forum/post/558327</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/558327</guid><dc:creator><![CDATA[phlox81]]></dc:creator><pubDate>Sun, 11 Jul 2004 18:55:42 GMT</pubDate></item><item><title><![CDATA[Reply to anzahl der nicht beschriebenen Zeilen on Sun, 11 Jul 2004 19:03:44 GMT]]></title><description><![CDATA[<p>Danke, warum hat dass blos vorhin nicht gefunzt??</p>
<pre><code class="language-cpp">CString m_strCode;
GetWindowText(m_strCode);	
int nPosition=-1,nZahl=0;
nPosition = m_strCode.Find(&quot;\r\n\r\n&quot;,0);
while(nPosition!=-1)
	{
		nZahl=nZahl+1;
		nPosition = m_strCode.Find(&quot;\r\n\r\n&quot;,nPosition+1);
	}
CString stTest;
stTest.Format(&quot; %d&quot;,nZahl);
MessageBox(stTest);
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/558334</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/558334</guid><dc:creator><![CDATA[kreen]]></dc:creator><pubDate>Sun, 11 Jul 2004 19:03:44 GMT</pubDate></item></channel></rss>