<?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[Ähnliches wie CListCtrl]]></title><description><![CDATA[<p>Kann man ohne MFC ähnliches wie CListCtrl benutzen ?</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/207062/ähnliches-wie-clistctrl</link><generator>RSS for Node</generator><lastBuildDate>Sat, 25 Apr 2026 20:51:35 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/207062.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 03 Mar 2008 12:49:18 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Ähnliches wie CListCtrl on Mon, 03 Mar 2008 12:49:18 GMT]]></title><description><![CDATA[<p>Kann man ohne MFC ähnliches wie CListCtrl benutzen ?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1467256</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1467256</guid><dc:creator><![CDATA[vitronix]]></dc:creator><pubDate>Mon, 03 Mar 2008 12:49:18 GMT</pubDate></item><item><title><![CDATA[Reply to Ähnliches wie CListCtrl on Mon, 03 Mar 2008 13:09:14 GMT]]></title><description><![CDATA[<p>Ja, CListCtrl ist nur ein MFC-Wrapper<br />
<a href="http://www.codeproject.com/KB/combobox/listview.aspx" rel="nofollow">link</a></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1467271</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1467271</guid><dc:creator><![CDATA[Airdamn]]></dc:creator><pubDate>Mon, 03 Mar 2008 13:09:14 GMT</pubDate></item><item><title><![CDATA[Reply to Ähnliches wie CListCtrl on Mon, 03 Mar 2008 18:09:52 GMT]]></title><description><![CDATA[<p>Danke ! Das Beispiel ist sehr hilfreich.<br />
Nun möchte die ein makiertes Element in ListView nachoben/nachunten bewegen.<br />
wie kann ich es der Reihe nach machen ?<br />
zb.</p>
<p>getCurrentItemId,<br />
MoveSelected<br />
....</p>
<p>Also welche Funktionen, Msgs nehme ich dann aus commctrl.h ?</p>
<p>Grusd</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1467493</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1467493</guid><dc:creator><![CDATA[vitronix]]></dc:creator><pubDate>Mon, 03 Mar 2008 18:09:52 GMT</pubDate></item><item><title><![CDATA[Reply to Ähnliches wie CListCtrl on Tue, 04 Mar 2008 14:27:21 GMT]]></title><description><![CDATA[<p>Ich möchte das aktuelles Element nach oben verschieben. aber es macht irgendwie nicht. hier ist mein Code:</p>
<pre><code>int iPrevItem,iCurrSelected,i;
							LVITEM tmpLvItem;  // temp ListView 

						iCurrSelected=SendMessage(hList,LVM_GETNEXTITEM,-1,LVNI_FOCUSED);

							swprintf(ItemText,L&quot;itemcount %d&quot;,iCurrSelected);

							if(iCurrSelected &gt; 0 ) 
							{

								LvItem.iItem = iCurrSelected;
								tmpLvItem.iItem = iCurrSelected-1;
								for (i=0; i&lt; SubItemMax;i++)
								{
									LvItem.iSubItem = i;
									tmpLvItem.iSubItem = i;
									ListView_GetItem(hList,&amp;LvItem);
									tmpLvItem.pszText = LvItem.pszText
									SendMessage(hList,LVM_SETITEM,i,(LPARAM)&amp;tmpLvItem); 
								}
							}
</code></pre>
<p>Wo habe ich denn falsch gemacht ?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1468063</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1468063</guid><dc:creator><![CDATA[vitronix]]></dc:creator><pubDate>Tue, 04 Mar 2008 14:27:21 GMT</pubDate></item></channel></rss>