Tagged Questions

3
votes
5answers
183 views

Does C# have a Handles keyword?

Protected Sub Menu1_MenuItemClick(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.MenuEventArgs) Handles Menu1.MenuItemClick End Sub In VB.net, we have the Handles keyword, I'm ...
3
votes
3answers
683 views

How do I find where my .Net app is leaking Windows handles?

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 manager) increases by between ...
3
votes
4answers
6k 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 Server 2003. We're ...
1
vote
2answers
128 views

Windows handle if a control is set to visible = false (.NET)

Quick question, do controls in .NET have handles (hWnd) if they are set to invisible? Marlon
1
vote
1answer
310 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 number of USER objects ...
0
votes
1answer
54 views

how to get the control of the UI Element Clicked in a external application

How can i get the control (and possibly its text value) of a control which was clicked in another third party application (its not a .net or wpf application for which there are answers which did not ...
0
votes
1answer
50 views

As a .NET developer, what do I need to know about GDI (objects, handles, etc.) and where can I learn about it?

Sometimes I run into errors or problems involving handles, GDI objects, etc. For instance right now I have a recurring error in one of my clients' applications that is an error creating a handle. I ...
0
votes
1answer
427 views

how to change the window style of a form outside your app?

how to change the window style of a form outside your app?hard question? i am actually trying to move a form witch is topmost and has no border. i have the handle(hWnd) of the window. i can write ...