<?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[Liste markiert]]></title><description><![CDATA[<p>Hallo alle zusammen,<br />
ich habe ein Listenfeld wo ich zeilenweise markieren kann...<br />
Nun möchte ich überprüfen welche zeile markiert ist um diese später zu löschen... Wie findet dieser Überprüfung statt???</p>
<p>Danke im voraus...<br />
PS: Ein bisschen Quellcode wäre supper!!!</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/43494/liste-markiert</link><generator>RSS for Node</generator><lastBuildDate>Fri, 24 Apr 2026 09:30:45 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/43494.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 22 Jul 2003 14:43:11 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Liste markiert on Tue, 22 Jul 2003 14:43:11 GMT]]></title><description><![CDATA[<p>Hallo alle zusammen,<br />
ich habe ein Listenfeld wo ich zeilenweise markieren kann...<br />
Nun möchte ich überprüfen welche zeile markiert ist um diese später zu löschen... Wie findet dieser Überprüfung statt???</p>
<p>Danke im voraus...<br />
PS: Ein bisschen Quellcode wäre supper!!!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/314865</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/314865</guid><dc:creator><![CDATA[xyxyxy]]></dc:creator><pubDate>Tue, 22 Jul 2003 14:43:11 GMT</pubDate></item><item><title><![CDATA[Reply to Liste markiert on Tue, 22 Jul 2003 16:52:57 GMT]]></title><description><![CDATA[<p>MSDN:</p>
<pre><code class="language-cpp">// The pointer to my list view control.
extern CListCtrl* pmyListCtrl;

UINT i, uSelectedCount = pmyListCtrl-&gt;GetSelectedCount();
int  nItem = -1;

// Update all of the selected items.
if (uSelectedCount &gt; 0)
{
   for (i=0;i &lt; uSelectedCount;i++)
   {
      nItem = pmyListCtrl-&gt;GetNextItem(nItem, LVNI_SELECTED);
      ASSERT(nItem != -1);
      pmyListCtrl-&gt;Update(nItem); 
   }
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/314966</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/314966</guid><dc:creator><![CDATA[CMatt]]></dc:creator><pubDate>Tue, 22 Jul 2003 16:52:57 GMT</pubDate></item></channel></rss>