Purpose
Determine where the user clicked on a form.

	Method
The problem is the Click event handler does not tell you the coordinates where
the user clicked. Use a form-level variable to save the coordinates in the
MouseUp event handler. Then use those coordinates in the Click event handler.

	Disclaimer
This example program is provided "as is" with no warranty of any kind. It is
intended for demonstration purposes only. In particular, it does not error
handling.