Reputation: 4346
In VB.NET I can add an event listener for clicking inside a form, but I want the program to pick up clicks outside the form, when I am clicking elsewhere. Is this possible?
Upvotes: 1
Views: 737
Reputation: 54532
You are talking about a global mouse hook, the codeplex project GlobalMouseKeyboardHook is one of the easier ways to accomplish it.
Upvotes: 2