<?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[MESSAGE suche]]></title><description><![CDATA[<p>heiho</p>
<p>folgendes</p>
<p>eine CListCtrl in View erstellt<br />
items werden hinzugefuegt in doc<br />
nu moechte ich die message abfangen wenn ich ein idem bzw eine zeile anklick<br />
welche message brauch ich ?</p>
<p>schon viele moegliche probiert, aber keine davon wird benutzt /=</p>
<p>ps. Spy++ hab ich noch nie erfolgreich benutzt #gg</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/165200/message-suche</link><generator>RSS for Node</generator><lastBuildDate>Fri, 31 Jul 2026 05:21:45 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/165200.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 16 Nov 2006 14:29:34 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to MESSAGE suche on Thu, 16 Nov 2006 14:29:34 GMT]]></title><description><![CDATA[<p>heiho</p>
<p>folgendes</p>
<p>eine CListCtrl in View erstellt<br />
items werden hinzugefuegt in doc<br />
nu moechte ich die message abfangen wenn ich ein idem bzw eine zeile anklick<br />
welche message brauch ich ?</p>
<p>schon viele moegliche probiert, aber keine davon wird benutzt /=</p>
<p>ps. Spy++ hab ich noch nie erfolgreich benutzt #gg</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1175966</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1175966</guid><dc:creator><![CDATA[EXDW]]></dc:creator><pubDate>Thu, 16 Nov 2006 14:29:34 GMT</pubDate></item><item><title><![CDATA[Reply to MESSAGE suche on Thu, 16 Nov 2006 14:32:38 GMT]]></title><description><![CDATA[<p>Das müsste NM_CLICK sein. <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face"
      title=":)"
      alt="🙂"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1175971</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1175971</guid><dc:creator><![CDATA[estartu]]></dc:creator><pubDate>Thu, 16 Nov 2006 14:32:38 GMT</pubDate></item><item><title><![CDATA[Reply to MESSAGE suche on Thu, 16 Nov 2006 14:45:24 GMT]]></title><description><![CDATA[<p>LVN_ITEMCHANGED und LVN_ITEMCHANGING dienen dazu. Damit bekommst Du jede Änderungen der Selektion und auch andere mit.<br />
NM_CLICK liefert Dir nur die Info, dass ein Mausklick erfolgte. Wird die Selektion über die Tastatur verändert musst Du LVN_ITEMCHANGED bzw. LVN_ITEMCHANGING verwenden.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1175981</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1175981</guid><dc:creator><![CDATA[Martin Richter]]></dc:creator><pubDate>Thu, 16 Nov 2006 14:45:24 GMT</pubDate></item><item><title><![CDATA[Reply to MESSAGE suche on Thu, 16 Nov 2006 14:45:42 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">ON_CONTROL_RANGE(NM_CLICK, ID_LISTPREVIEW, ID_LISTPREVIEW, OnClickInList)
ON_CONTROL(NM_CLICK, ID_LISTPREVIEW, OnClickInList)
</code></pre>
<p>funzt nicht /=</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1175982</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1175982</guid><dc:creator><![CDATA[EXDW]]></dc:creator><pubDate>Thu, 16 Nov 2006 14:45:42 GMT</pubDate></item><item><title><![CDATA[Reply to MESSAGE suche on Thu, 16 Nov 2006 14:50:50 GMT]]></title><description><![CDATA[<p>Da hier direkt nach einem Klick gefragt wurde, habe ich eben auch nur die Nachricht für Klick rausgesucht. <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face"
      title=":)"
      alt="🙂"
    /><br />
Die Tasten habe ich bisher immer über LVN_KEYDOWN gelöst.</p>
<p>Hast du mal ein Beispiel, was in diesem</p>
<pre><code class="language-cpp">HD_NOTIFY *phdn = (HD_NOTIFY *) pNMHDR;
</code></pre>
<p>alles so versteckt ist?<br />
Diese Konstrukte kriege ich immer nicht entschlüsselt, daher läufts dann oft über einen Umweg. <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f644.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--face_with_rolling_eyes"
      title=":rolling_eyes:"
      alt="🙄"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1175986</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1175986</guid><dc:creator><![CDATA[estartu]]></dc:creator><pubDate>Thu, 16 Nov 2006 14:50:50 GMT</pubDate></item><item><title><![CDATA[Reply to MESSAGE suche on Thu, 16 Nov 2006 14:52:57 GMT]]></title><description><![CDATA[<p>Mr Evil schrieb:</p>
<blockquote>
<pre><code class="language-cpp">ON_CONTROL_RANGE(NM_CLICK, ID_LISTPREVIEW, ID_LISTPREVIEW, OnClickInList)
ON_CONTROL(NM_CLICK, ID_LISTPREVIEW, OnClickInList)
</code></pre>
<p>funzt nicht /=</p>
</blockquote>
<p>Klar, muss ja auch etwa so aussehen</p>
<pre><code class="language-cpp">ON_NOTIFY(NM_CLICK, IDC_LSC_ORTE, OnClickLscOrte)
</code></pre>
<p>(im View)<br />
Die Funktion dazu:</p>
<pre><code class="language-cpp">void COrteView::OnClickLscOrte(NMHDR* pNMHDR, LRESULT* pResult) 
{
	*pResult = 0;
}
</code></pre>
<p><img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face"
      title=":)"
      alt="🙂"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1175988</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1175988</guid><dc:creator><![CDATA[estartu]]></dc:creator><pubDate>Thu, 16 Nov 2006 14:52:57 GMT</pubDate></item><item><title><![CDATA[Reply to MESSAGE suche on Thu, 16 Nov 2006 15:02:50 GMT]]></title><description><![CDATA[<p>danke das wars {=<br />
wuerde durch spy++ schon auf das ON_NOTIFY aufmerksam, habs aber nicht anwenden koennen {kannte die parameter nicht} und kurz bevor ich in die MSDN schauen konnte hattest du schon geantwortet #gg</p>
<p>funzt nu {=</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1175999</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1175999</guid><dc:creator><![CDATA[EXDW]]></dc:creator><pubDate>Thu, 16 Nov 2006 15:02:50 GMT</pubDate></item></channel></rss>