Hook application with .NET to capture double click events - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T06:19:59Zhttp://stackoverflow.com/feeds/question/520440http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/520440/hook-application-with-net-to-capture-double-click-events0Hook application with .NET to capture double click eventsJason2009-02-06T14:21:28Z2009-02-06T14:46:31Z
<p>How can I hook an application so that I can find out when the mouse is double clicked within it?</p>
<p>Can this be done in .NET?</p>
<p>Are there anythings I should be careful about? (crashing the other application, for instance)</p>
http://stackoverflow.com/questions/520440/hook-application-with-net-to-capture-double-click-events/520465#5204650Answer by Mitch Wheat for Hook application with .NET to capture double click eventsMitch Wheat2009-02-06T14:29:44Z2009-02-06T14:46:31Z<p>It can be done in .NET, using the Win32 API. This <a href="http://msdn.microsoft.com/en-us/magazine/cc188966.aspx" rel="nofollow">MSDN article</a> describes windows hooks. There is also <a href="http://www.codeproject.com/KB/cs/globalhook.aspx" rel="nofollow">this</a> at CodeProject.</p>
<p>And yes, you should be very careful to always unhook handlers, no matter what error condition could cause the application to close unexpectedly.</p>
http://stackoverflow.com/questions/520440/hook-application-with-net-to-capture-double-click-events/520508#5205082Answer by LFSR Consulting for Hook application with .NET to capture double click eventsLFSR Consulting2009-02-06T14:39:08Z2009-02-06T14:39:08Z<p>The article "<a href="http://www.codingthewheel.com/archives/how-to-inject-a-managed-assembly-dll" rel="nofollow">How to inject a managed .NET assembly into a managed process</a>" will give you all you need to know to set the hook.</p>
<p>The article "<a href="http://www.codingthewheel.com/archives/how-i-built-a-working-online-poker-bot-4" rel="nofollow">How I Built a Working Poker Bot: Part 4</a>" will give you all you need for capturing the double clicks. </p>
<p>The code for both articles can be fairly domain specific, but you shouldn't have much trouble pulling out the golden nuggets to get up and running.</p>