Quote Originally Posted by SpartanGuy07 View Post
I'm not really sure that I understand how to use the event to read and report the mouse position.
The second parameter to your event handler, when it gets invoked by the framework, is a MouseEventArgs object. At least when the event handler's function header has been created by the IDE, that parameter will be named e. From that object you can, among other information, obtain the coordinates the mouse click occurred at as e->Location.

Sorry, but I am really new at this and I am getting this error "Error C2143: Syntax error : missing ';' before 'public' " and "Error C3708:'MouseEventHandler': improper use of 'event';must be made a member of compatible event source."
Sorry, without seeing your code I can't tell what this has been caused by. I need not only the entire event handler function but also some lines before and after that. Did you create the event handler with the IDE?