Sometimes I run into errors or problems involving handles, GDI objects, etc. For instance right now I have a recurring error in one of my clients' applications that is an error creating a handle.

I have no knowledge of this area. As a .NET developer, what should I know, and where can I learn about this part of developing for Windows?

link|improve this question

feedback

1 Answer

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...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.