vote up 2 vote down star

what is the best way to track and lower GDI windows handles . .

flag

5 Answers

vote up 3 vote down check

Two links worth reading...

Resource Leaks: Detecting, Locating, and Repairing Your Leaky GDI Code

GDI Resource Leaks

link|flag
vote up 1 vote down

Personally I use IARSN TaskInfo to see the number of handles my program uses, GDI included. As for lowering the number of active handles, then I would look at what in your application is using handles.

Things like (but not limited to):

  • Pens
  • Bitmaps
  • Controls (I don't think all of them uses handles)

Do you have a specific problem with too many handles, or perhaps even a handle leak?

link|flag
i think so but i am trying to determine how to diagnose this and isolate how to fix this – oo Nov 26 '08 at 1:31
vote up 1 vote down

You don't need any tool. Just read GDI handle table with win32 api

link|flag
how would you do this . .would this tell you where the handles are coming from? – oo Nov 26 '08 at 1:31
vote up 1 vote down

I wrote a tool to track down resource leaks awhile ago. It is hosted on google code. Although it is a native library, I believe it can be used to track down leaks in .NET code as well.

Hope it helps.

link|flag
vote up 0 vote down

the easiest way to see the current usage on an end user's machine is to use task manager and look at the column "GDI Handles"

When I suspect I have GDI handle leaks I tend to run through my leak scenario once, force a garbage collection, look at task manager, run the action again with gc and check for a difference. If I find one I have used the .Net Profiler (from SciTech) which can show in detail which object causes the leak and why it is not handed back

link|flag

Your Answer

Get an OpenID
or

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