How do you get all clicks to go through the event? I noticed if you click too fast it thinks you are double clicking and doesn\'t send the clicks to the event handler. Is th
You want to use the controls MouseDown event instead of the Click event. MouseDown will be called every single time the mouse is "pressed" on that control. Click may not get called if the system thinks it was a double click. A DoubleClick event would be raised instead.