Handles Can be a useful, but potentially can throw a curve ball every now and then;
SOME BASIC THINGS:
1.) Handles are basically a marker put in a object on a subroutine telling the compiler to add a event-Hook to the specified events when a new instance of the object is created, so that it will it will get called when the corresponding event is raised during run-time. NOTE; this means that even though your subroutine is the only one with a Handle on a specific event right now that does not give it exclusivity to the event, meaning that even during run-time another handles can be added or removed from the event. NOR does a handle ensure what order it will be executed in relative to other subroutines that handle a event. events are managed by the run-time and tend to be thread-specific, however there are ways around this...
2.) I suggest you get a book that deals directly with whatever .net language you are familiar with, as any basic .net book should cover events and handles significantly enough in-depth...
3.) #1 is scary because its technical, a book would be way better...