up vote 2 down vote favorite
2
share [g+] share [fb]

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

link|improve this question

feedback

6 Answers

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|improve this answer
i think so but i am trying to determine how to diagnose this and isolate how to fix this – leora Nov 26 '08 at 1:31
feedback

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

link|improve this answer
how would you do this . .would this tell you where the handles are coming from? – leora Nov 26 '08 at 1:31
feedback

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|improve this answer
feedback

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|improve this answer
feedback

To track the GDI handles I would suggest GDIView from Nirsoft. It is a freeware which can display how many GDI handles from each type (Pen, Brush, Bitmap, Font, DC, ...) has a process.

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.