0
votes
1answer
31 views
Finding the number of USER Objects used by a process.
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 nu …
1
vote
4answers
567 views
How to enumerate process’ handles?
Is there any way how to enumerate process with given PID in windows, and get list of all his opened handles(locked files, etc.)?
EDIT: I dont care about language. If it is in .NE …
3
votes
1answer
235 views
Migrating Handles from VB.NET to C#
Hi,
I'm migrating some code from VB.NET to C# (3.5).
I find structurs like:
Public Event DataLoaded(ByVal sender As Object, ByVal e As EventArgs)
Protected Sub Mag_Button_Load_C …
3
votes
4answers
1k views
“Error Creating Window Handle”
We're working on a very large .NET WinForms composite application - not CAB, but a similar home grown framework. We're running in a Citrix and RDP environment running on Windows S …
0
votes
1answer
81 views
Is there a WCF equivalent to RPC context handles?
I'm updating an old c++ service to use WCF instead of RPC and there is an issue as to what type to use when sending and receiving a handle (HANDLE, void*..etc). In the updated serv …
0
votes
2answers
99 views
How can you break on handle creation?
I have an application that spawns multiple child processes. Before launching a child, I create stdOut and stdErr handles to a log file (for example, if I am about to launch procA, …
0
votes
1answer
168 views
GDI handles with icons . l
i have a winforms application. i have a user control with a lot of icons. the user can load this control on a form many times (in a tabbed layout). right now i am loading the ic …
3
votes
3answers
355 views
How do I find where my .Net app is leaking Windows handles?
Hi all,
I've got a WinForms .Net app that runs over a lot of XPS documents (thousands) and during this run the number of handles (according sysinternals process monitor and task m …
