Tagged Questions
3
votes
5answers
185 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
1answer
1k views
Migrating Handles from VB.NET to C#
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_Click(ByVal sender As ...
2
votes
2answers
84 views
Why is SafeHandle.DangerousGetHandle() “Dangerous”?
This is the first time ever that I'll be using SafeHandle.
I need to call this P/Invoke method that needs an UIntPtr.
[DllImport("advapi32.dll", CharSet = CharSet.Auto)]
public static ...
2
votes
6answers
608 views
UI Thread .Invoke() causing handle leak?
In what circumstances would updating a UI control from a non-UI thread could cause the processes' handles to continually increase, when using a delegate and .InvokeRequired?
For example:
public ...
2
votes
3answers
239 views
Help converting a VB.NET “Handles” statement to C#
I need help converting a VB.NET handles statement to C#. This is the VB
Private Sub ReceiveMessage(ByVal rr As RemoteRequest) Handles AppServer.ReceiveRequest
'Some code in here
End Sub
2
votes
2answers
176 views
get all handles of a window
hello
Im looking for a way to get all handles in a specified window,
of every button and everything.
I tried with EnumDesktopWindows but it doesnt enum every handle, only the window handles.
1
vote
1answer
311 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
55 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
70 views
Detect Refresh action under windows xp
My question is simple. How I can detect if user refreshed explorer under windows xp? Or if it would be easier how to detect if user refreshed desktop?
I heard that I can listen desktop handle. If ...
0
votes
0answers
51 views
How to Link Two External Application Together via data in their respective TextBoxes fields in C#?
I need to be able to link two External Applications together through their text boxes.
For the example, consider:
Internet Explorer & Mozilla Firefox (these are arbitrary - not looking for their ...
0
votes
0answers
138 views
Directory handle does not release after Paradox ODBC connection is closed
I'm using ODBC in C# to connect to a set of Paradox tables. The code looks like this:
static public Dictionary<string, Dictionary<string, Dictionary<string, string>>>
...
0
votes
0answers
395 views
List open files by process
Assuming I have the pid or process name, how can I get the open files by that process in c#? The question has been asked before but I couldn't find what I was looking for.
I know that each process ...
0
votes
2answers
870 views
Get process name from pid or handle
Assuming I already have the handle to a window, I can get the pid with GetWindowThreadProcessId. Is there a way I can get the process name without having to get all the processes and try to match my ...
0
votes
1answer
428 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 ...
0
votes
1answer
271 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 icons each time the ...