vote up 0 vote down star

I'm investigating a possible memory leak which is causing an "Error creating window handle" Win32Exception in my .NET 2.0 WinForms app. This is related to number of Handles and number of USER objects (most likely) so I'm trying to log these metrics the next time the exception is thrown.

HandleCount is easy to find: Process.HandleCount.

Does anyone know how to find the Number of USER objects? (Value can be seen in a column of the Task Manager->Processes) .NET or win API functions will do.

Thanks!

flag

80% accept rate

1 Answer

vote up 1 vote down check

Try GetGuiResources which you can call using P/Invoke

link|flag

Your Answer

Get an OpenID
or

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