Mouse management in the .NET IDE.
This entry was posted on 7/11/2006 11:46 AM and is filed under Tips.
To add mouse management in the .NET IDE, go to the window in the lower right and select the "properties" tab. At the top, select the fifth icon from the left and click on it. The tool-tip pop-up should be "Messages." This will give you a list of windows messages. Scroll down until you find WM_LBUTTONDOWN (or whatever). Select this line, and click on the drop-down buttion. The only option should be to add the message handler. Select this option, and the message handling function will be added to your code.
--P. Maurer