<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Mouse tilt wheel horizontal scrolling in C#</title>
	<atom:link href="http://www.philosophicalgeek.com/2007/07/27/mouse-tilt-wheel-horizontal-scrolling-in-c/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.philosophicalgeek.com/2007/07/27/mouse-tilt-wheel-horizontal-scrolling-in-c/</link>
	<description>Code and musings by Ben Watson</description>
	<lastBuildDate>Sat, 04 Feb 2012 04:16:32 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Ben</title>
		<link>http://www.philosophicalgeek.com/2007/07/27/mouse-tilt-wheel-horizontal-scrolling-in-c/comment-page-1/#comment-179254</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Wed, 22 Dec 2010 16:39:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.philosophicalgeek.com/2007/07/27/mouse-tilt-wheel-horizontal-scrolling-in-c/#comment-179254</guid>
		<description>walkingTarget, actually 0xFFFF is correct. The original value is 4 bytes, which mask would be 0xFFFFFFFF, so to get the two byte portion I need, the mask is 0xFFFF</description>
		<content:encoded><![CDATA[<p>walkingTarget, actually 0xFFFF is correct. The original value is 4 bytes, which mask would be 0xFFFFFFFF, so to get the two byte portion I need, the mask is 0xFFFF</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: walkingTarget</title>
		<link>http://www.philosophicalgeek.com/2007/07/27/mouse-tilt-wheel-horizontal-scrolling-in-c/comment-page-1/#comment-179249</link>
		<dc:creator>walkingTarget</dc:creator>
		<pubDate>Wed, 22 Dec 2010 15:43:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.philosophicalgeek.com/2007/07/27/mouse-tilt-wheel-horizontal-scrolling-in-c/#comment-179249</guid>
		<description>In your Utils class, I think you mean to use a bitmask to mask off the portion of the byte you&#039;re not using. 0xFFFF won&#039;t mask any portion of the byte; you&#039;ll always get the same number back.

Probably you meant to use 0x00FF to mask off the HIWORD, so that you can examine the LOWORD, or the HIWORD after you&#039;ve shifted bits.

Sorry, to zombie this post.</description>
		<content:encoded><![CDATA[<p>In your Utils class, I think you mean to use a bitmask to mask off the portion of the byte you&#8217;re not using. 0xFFFF won&#8217;t mask any portion of the byte; you&#8217;ll always get the same number back.</p>
<p>Probably you meant to use 0x00FF to mask off the HIWORD, so that you can examine the LOWORD, or the HIWORD after you&#8217;ve shifted bits.</p>
<p>Sorry, to zombie this post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Noa</title>
		<link>http://www.philosophicalgeek.com/2007/07/27/mouse-tilt-wheel-horizontal-scrolling-in-c/comment-page-1/#comment-101642</link>
		<dc:creator>Noa</dc:creator>
		<pubDate>Tue, 02 Jun 2009 08:33:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.philosophicalgeek.com/2007/07/27/mouse-tilt-wheel-horizontal-scrolling-in-c/#comment-101642</guid>
		<description>Ah, i really wan&#039;t do disable the vertical scrolling in my Form.
But can&#039;t find this suitable for that.

Has any one some tips how to move on?

Regards
Noa</description>
		<content:encoded><![CDATA[<p>Ah, i really wan&#8217;t do disable the vertical scrolling in my Form.<br />
But can&#8217;t find this suitable for that.</p>
<p>Has any one some tips how to move on?</p>
<p>Regards<br />
Noa</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Solo</title>
		<link>http://www.philosophicalgeek.com/2007/07/27/mouse-tilt-wheel-horizontal-scrolling-in-c/comment-page-1/#comment-100735</link>
		<dc:creator>Solo</dc:creator>
		<pubDate>Wed, 27 May 2009 13:27:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.philosophicalgeek.com/2007/07/27/mouse-tilt-wheel-horizontal-scrolling-in-c/#comment-100735</guid>
		<description>Hey, by the way I made it work in for a project in OpenGL. I really really appreciate your help(saved me a lot of time).
Thanks and all the best,
Cheers!!!</description>
		<content:encoded><![CDATA[<p>Hey, by the way I made it work in for a project in OpenGL. I really really appreciate your help(saved me a lot of time).<br />
Thanks and all the best,<br />
Cheers!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rodrigo Santos</title>
		<link>http://www.philosophicalgeek.com/2007/07/27/mouse-tilt-wheel-horizontal-scrolling-in-c/comment-page-1/#comment-98282</link>
		<dc:creator>Rodrigo Santos</dc:creator>
		<pubDate>Fri, 08 May 2009 13:12:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.philosophicalgeek.com/2007/07/27/mouse-tilt-wheel-horizontal-scrolling-in-c/#comment-98282</guid>
		<description>Hey, thanks for that :) , I&#039;ll try to implement this on my project on a datagridview, if works i will make a post explain how use with a datagrid


Thanks again :)</description>
		<content:encoded><![CDATA[<p>Hey, thanks for that <img src='http://www.philosophicalgeek.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  , I&#8217;ll try to implement this on my project on a datagridview, if works i will make a post explain how use with a datagrid</p>
<p>Thanks again <img src='http://www.philosophicalgeek.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Confluence: Blue Book</title>
		<link>http://www.philosophicalgeek.com/2007/07/27/mouse-tilt-wheel-horizontal-scrolling-in-c/comment-page-1/#comment-85315</link>
		<dc:creator>Confluence: Blue Book</dc:creator>
		<pubDate>Thu, 29 Jan 2009 23:28:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.philosophicalgeek.com/2007/07/27/mouse-tilt-wheel-horizontal-scrolling-in-c/#comment-85315</guid>
		<description>&lt;strong&gt;View Docs with Multiple Pages...&lt;/strong&gt;

Document Pager UserControl This is a custom WinForms control that utilizes a Panel and ToolStrip control to navigation a multiple page PDF document. ToolStrip was used because it provides builtin layout and easy of use for wiring image button, label,.....</description>
		<content:encoded><![CDATA[<p><strong>View Docs with Multiple Pages&#8230;</strong></p>
<p>Document Pager UserControl This is a custom WinForms control that utilizes a Panel and ToolStrip control to navigation a multiple page PDF document. ToolStrip was used because it provides builtin layout and easy of use for wiring image button, label,&#8230;..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: frinkfree</title>
		<link>http://www.philosophicalgeek.com/2007/07/27/mouse-tilt-wheel-horizontal-scrolling-in-c/comment-page-1/#comment-83985</link>
		<dc:creator>frinkfree</dc:creator>
		<pubDate>Thu, 22 Jan 2009 19:02:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.philosophicalgeek.com/2007/07/27/mouse-tilt-wheel-horizontal-scrolling-in-c/#comment-83985</guid>
		<description>Not enough information, oh come on. Isn&#039;t the problem obvious by the inflection in his writing? Sounds like he has a &quot;Glacial&quot; error! :-)

Perhaps the exception is in the override of WndProc. I modified the line
    if (m.HWnd != this.Handle)
to
    if (IsDisposed &#124;&#124; (m.HWnd != this.Handle))

It appears that accessing the Handle during the controls demise is not kosher.

Maybe that helps - frinkfree</description>
		<content:encoded><![CDATA[<p>Not enough information, oh come on. Isn&#8217;t the problem obvious by the inflection in his writing? Sounds like he has a &#8220;Glacial&#8221; error! <img src='http://www.philosophicalgeek.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Perhaps the exception is in the override of WndProc. I modified the line<br />
    if (m.HWnd != this.Handle)<br />
to<br />
    if (IsDisposed || (m.HWnd != this.Handle))</p>
<p>It appears that accessing the Handle during the controls demise is not kosher.</p>
<p>Maybe that helps &#8211; frinkfree</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pepethecow</title>
		<link>http://www.philosophicalgeek.com/2007/07/27/mouse-tilt-wheel-horizontal-scrolling-in-c/comment-page-1/#comment-34241</link>
		<dc:creator>pepethecow</dc:creator>
		<pubDate>Thu, 28 Feb 2008 13:14:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.philosophicalgeek.com/2007/07/27/mouse-tilt-wheel-horizontal-scrolling-in-c/#comment-34241</guid>
		<description>coby, I&#039;m afraid that really isn&#039;t enough information to go on.</description>
		<content:encoded><![CDATA[<p>coby, I&#8217;m afraid that really isn&#8217;t enough information to go on.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: coby</title>
		<link>http://www.philosophicalgeek.com/2007/07/27/mouse-tilt-wheel-horizontal-scrolling-in-c/comment-page-1/#comment-34165</link>
		<dc:creator>coby</dc:creator>
		<pubDate>Thu, 28 Feb 2008 02:01:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.philosophicalgeek.com/2007/07/27/mouse-tilt-wheel-horizontal-scrolling-in-c/#comment-34165</guid>
		<description>I changed like above for the vertical scroll but got an exception below that I can&#039;t understand.

GlacialComponents.Controls.GlacialList.vPanelScrollBar

Could you please help?

Thanks in advance.</description>
		<content:encoded><![CDATA[<p>I changed like above for the vertical scroll but got an exception below that I can&#8217;t understand.</p>
<p>GlacialComponents.Controls.GlacialList.vPanelScrollBar</p>
<p>Could you please help?</p>
<p>Thanks in advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Itanium</title>
		<link>http://www.philosophicalgeek.com/2007/07/27/mouse-tilt-wheel-horizontal-scrolling-in-c/comment-page-1/#comment-23001</link>
		<dc:creator>Itanium</dc:creator>
		<pubDate>Fri, 19 Oct 2007 23:30:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.philosophicalgeek.com/2007/07/27/mouse-tilt-wheel-horizontal-scrolling-in-c/#comment-23001</guid>
		<description>So helpful post. This is what I&#039;ve looking for. Thanks!</description>
		<content:encoded><![CDATA[<p>So helpful post. This is what I&#8217;ve looking for. Thanks!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

