<?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[CListCtrl nachträglich LVS_SINGLESEL verpaßen?]]></title><description><![CDATA[<p>Kann ich ein CListCtrl nachträglich zur LVS_SINGLESEL zwingen? (Also nach dem es created ist). Geht das mit SetExtendedStyle? Aber dann müßte es ja ein LVS_EX_SINGLESEL geben und das gibt es nciht <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f61e.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--disappointed_face"
      title=":("
      alt="😞"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/topic/51728/clistctrl-nachträglich-lvs_singlesel-verpaßen</link><generator>RSS for Node</generator><lastBuildDate>Sun, 31 May 2026 16:05:55 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/51728.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 13 Oct 2003 12:45:15 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to CListCtrl nachträglich LVS_SINGLESEL verpaßen? on Mon, 13 Oct 2003 12:45:15 GMT]]></title><description><![CDATA[<p>Kann ich ein CListCtrl nachträglich zur LVS_SINGLESEL zwingen? (Also nach dem es created ist). Geht das mit SetExtendedStyle? Aber dann müßte es ja ein LVS_EX_SINGLESEL geben und das gibt es nciht <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f61e.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--disappointed_face"
      title=":("
      alt="😞"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/371240</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/371240</guid><dc:creator><![CDATA[Fray]]></dc:creator><pubDate>Mon, 13 Oct 2003 12:45:15 GMT</pubDate></item><item><title><![CDATA[Reply to CListCtrl nachträglich LVS_SINGLESEL verpaßen? on Mon, 13 Oct 2003 13:17:51 GMT]]></title><description><![CDATA[<p>Ich bin mir nicht sicher ob das geht aber versuche es doch mal mit SendMessage();.<br />
Eventuell kannst du es darüber setzten. <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f615.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--confused_face"
      title=":confused:"
      alt="😕"
    /></p>
<p>MFG</p>
<p>RS</p>
]]></description><link>https://www.c-plusplus.net/forum/post/371257</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/371257</guid><dc:creator><![CDATA[ReneS]]></dc:creator><pubDate>Mon, 13 Oct 2003 13:17:51 GMT</pubDate></item><item><title><![CDATA[Reply to CListCtrl nachträglich LVS_SINGLESEL verpaßen? on Mon, 13 Oct 2003 13:28:25 GMT]]></title><description><![CDATA[<p>Mit SetWindowLong mit GWL_STYLE geht das.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/371267</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/371267</guid><dc:creator><![CDATA[MFK]]></dc:creator><pubDate>Mon, 13 Oct 2003 13:28:25 GMT</pubDate></item><item><title><![CDATA[Reply to CListCtrl nachträglich LVS_SINGLESEL verpaßen? on Mon, 13 Oct 2003 13:38:05 GMT]]></title><description><![CDATA[<p>Danke Funktioniert!</p>
<pre><code class="language-cpp">DWORD style = GetWindowLong(m_ctrlListe.GetSafeHwnd(),GWL_STYLE);
SetWindowLong(m_ctrlListe.GetSafeHwnd(), GWL_STYLE, style | LVS_SINGLESEL);
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/371279</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/371279</guid><dc:creator><![CDATA[Fray]]></dc:creator><pubDate>Mon, 13 Oct 2003 13:38:05 GMT</pubDate></item></channel></rss>