<?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[nochmal ärger mit trackbar]]></title><description><![CDATA[<p>hi leute,</p>
<p>ich ärgere mich schon geraume zeit mit der trackbar rum. ich weiß also im mom wie ich dort ereignisse abfangen kann. folgender code:</p>
<pre><code class="language-cpp">case WM_NOTIFY:
	switch(LOWORD(wParam))
	{
		case SLD_SIZE:
			position = ::SendMessage(GetDlgItem(hdlg, SLD_SIZE), TBM_GETPOS, 0, 0);
			::SetWindowText(::GetDlgItem(hdlg, INFO_TEXT), L&quot;hat geklappt&quot;);

			return(true);
	}

	return(true);
</code></pre>
<p>nun habe ich festgestellt, dass das nicht etwas ausgelöst wird wenn ich den schieberegler betätige sondern nur am anfang, des programms einmal und dann nie wieder. selbst wenn ich den schieberegler betätige. was soll ich machen was mache ich falsch???</p>
<p>mfg freaker</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/176642/nochmal-ärger-mit-trackbar</link><generator>RSS for Node</generator><lastBuildDate>Sat, 11 Jul 2026 21:52:09 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/176642.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 23 Mar 2007 09:21:34 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to nochmal ärger mit trackbar on Fri, 23 Mar 2007 09:21:34 GMT]]></title><description><![CDATA[<p>hi leute,</p>
<p>ich ärgere mich schon geraume zeit mit der trackbar rum. ich weiß also im mom wie ich dort ereignisse abfangen kann. folgender code:</p>
<pre><code class="language-cpp">case WM_NOTIFY:
	switch(LOWORD(wParam))
	{
		case SLD_SIZE:
			position = ::SendMessage(GetDlgItem(hdlg, SLD_SIZE), TBM_GETPOS, 0, 0);
			::SetWindowText(::GetDlgItem(hdlg, INFO_TEXT), L&quot;hat geklappt&quot;);

			return(true);
	}

	return(true);
</code></pre>
<p>nun habe ich festgestellt, dass das nicht etwas ausgelöst wird wenn ich den schieberegler betätige sondern nur am anfang, des programms einmal und dann nie wieder. selbst wenn ich den schieberegler betätige. was soll ich machen was mache ich falsch???</p>
<p>mfg freaker</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1250994</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1250994</guid><dc:creator><![CDATA[freaker]]></dc:creator><pubDate>Fri, 23 Mar 2007 09:21:34 GMT</pubDate></item><item><title><![CDATA[Reply to nochmal ärger mit trackbar on Fri, 23 Mar 2007 10:00:26 GMT]]></title><description><![CDATA[<p>Ist Dir die MSDN ein Begriff?<br />
Dann sollte Dir klar sein das im lParam bei einem WM_NOTIFY ein Zeiger auf eine Datenstruktur mit den entsprechenden Infos gesendet wird!</p>
<p>RTFM (Read the fine MSDN)<br />
<a href="http://msdn.microsoft.com/library/en-us/shellcc/platform/commctls/common/messages/wm_notify.asp?frame=true" rel="nofollow">http://msdn.microsoft.com/library/en-us/shellcc/platform/commctls/common/messages/wm_notify.asp?frame=true</a></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1251013</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1251013</guid><dc:creator><![CDATA[Martin Richter]]></dc:creator><pubDate>Fri, 23 Mar 2007 10:00:26 GMT</pubDate></item></channel></rss>