Hook application with .NET to capture double click events - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T06:19:59Z http://stackoverflow.com/feeds/question/520440 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/520440/hook-application-with-net-to-capture-double-click-events 0 Hook application with .NET to capture double click events Jason 2009-02-06T14:21:28Z 2009-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#520465 0 Answer by Mitch Wheat for Hook application with .NET to capture double click events Mitch Wheat 2009-02-06T14:29:44Z 2009-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#520508 2 Answer by LFSR Consulting for Hook application with .NET to capture double click events LFSR Consulting 2009-02-06T14:39:08Z 2009-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>