what is the best way to track and lower GDI windows handles . .
|
feedback
|
|
Two links worth reading... Resource Leaks: Detecting, Locating, and Repairing Your Leaky GDI Code | |||
|
feedback
|
|
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):
Do you have a specific problem with too many handles, or perhaps even a handle leak? | |||
feedback
|
|
You don't need any tool. Just read GDI handle table with win32 api | |||
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. | |||
|
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 | |||
|
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. | |||
|
feedback
|