Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
3answers
243 views

Handles Comparison: empty classes vs. undefined classes vs. void*

Microsoft's GDI+ defines many empty classes to be treated as handles internally. For example, (source GdiPlusGpStubs.h) //Approach 1 class GpGraphics {}; class GpBrush {}; class GpTexture : public ...
6
votes
4answers
3k 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 .NET, I'd be glad, if ...
5
votes
5answers
4k views

SWT No More Handles

Windows XP has the limit 10000 user handles for each process and total 32000 for each desktop session. However, when I run 4 or 5 SWT process, each consuming no more than 2000 user handles, the SWT No ...
5
votes
5answers
206 views

Handles being released corrupted somehow?

Strange problem. Maybe someone can give some insight. Scenario 1. I have a TBitmap in memory that is written to while complex calculations take place to calculate the color of each pixel. Every ...
4
votes
1answer
290 views

SWT - How to debug “No more handles”

from time to time I am haunted by the "org.eclipse.swt.SWTError: No more handles". I already know tools like GDIView, to watch the number of handles allocated, but now I wonder if there is a better ...
4
votes
2answers
322 views

Memory/Handle/Gdi leak utility

I remember from past having a utility that would allow to leak various system resources, such as memory, handles and gdi. It had a small dialog where one would choose what to leak, it was nice for ...
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
2answers
155 views

VB [(Function) handles …] equivalent in Delphi

Say we had something like Private Sub ClickObject(ByVal sender As System.Object, ByVal e as System.Eventargs) Handles Object1.click, Object2.click, Object3.click Which takes the event after the ...
3
votes
3answers
266 views

Anonymous Pipes

I've written a two short programs that use anonymous pipes to communicate. The parent process shares the pipe handles by setting the standard IO handles for the child: // -- Set STARTUPINFO for the ...
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 ...
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 ...
2
votes
2answers
39 views

JQuery resize handles not working after rotation using jQueryRotate

Hi can anyone please help me with a problem I have with the risizing handles in jquery. Basically, I have a div dragging, resizing and rotating (using jqueryRotate) as expected. However when the div ...
2
votes
2answers
83 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
2answers
174 views

Using Event Handles Across Threads - C++

I have an application wherein I am sharing event handles across threads. These event handles are used to signal transmit complete and received data notifications of serial I/O to the application. ...
2
votes
3answers
268 views

Testing for an invalid windows handle: should I compare with 'NULL', '0' or even 'nullptr'?

I'm coming from a background whereby pointers should generally be compared with 'NULL' and integers with '0'. Since I didn't perceive Windows handles to be 'pointers' in the pure sense (being ...
2
votes
2answers
88 views

Having several file pointers open simultaneaously alright?

I'm reading from certain offsets in several hundred and possibly thousands files. Because I need only certain data from certain offsets at that particular time, I must either keep the file handle open ...
2
votes
6answers
607 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
237 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
174 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
82 views

Get name of all handles in current process

I need to list all open handles in current process. Since i could not find any function like "EnumHandles", I was thinking of making a loop from 0 to 1000. The question is how i can retrieve the name ...
1
vote
2answers
50 views

Check Value of .NET Handle ^

Here's my situation: I have .NET wrapper-objects in a C++/CLI layer that hold pointers to unmanaged C++ objects. I've implemented the finalizer so that it deletes the unmanaged memory pointed to by ...
1
vote
2answers
66 views

Handle declarations

Can anyone tell me what the difference is between these 2 lines of code, which one is better to use? System::String ^MyStr = gcnew System::String(MyStr); System::String ^MyStr;
1
vote
2answers
199 views

Finding & using the currently active Chatbox in the Skype Client thru the WinAPI & Delphi?

In Delphi, by using the Skype API, I can send a message to a contact fairly easy. However, what I am trying to do, is enter the message in the Chat Box of the currently focused Contact, without ...
1
vote
6answers
264 views

How to determine why is Java app slow

We have an Java ERP type of application. Communication between server an client is via RMI. In peak hours there can be up to 250 users logged in and about 20 of them are working at the same time. This ...
1
vote
3answers
234 views

Is it safe to “double-close” a handle using CloseHandle?

What are the implications of calling CloseHandle more than once? The docs say "you shouldn't" but I think I have a realistic case with named pipes where a handle might be closed externally (See end ...
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
2answers
474 views

AddHandler vs. Handles - what is the difference?

Understood that Handles is only a way to add in constructor the AddHandler, but in general these two are equivalent. True?
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
0answers
12 views

Setting jQuery Resizable Handles for Multiple Elements

I am using code similar to that shown below to allow resizing of 2 elements. $( "#resizable-text1, #resizable-text2" ).resizable({ containment: "#containment-wrapper", handles: ...
0
votes
1answer
53 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
27 views

How to recover handles allocated by CreateProcess() function?

I'm writing a program to start/terminate a certain application for many times. My problem is: I can't totally recover allocated handles for each single loop. Below is original code I grabbed from ...
0
votes
1answer
40 views

handles a control in a formview in asp.net

How can I do a handles from a control contened in a formview, in code only i can see formview but not the controls in the inserttemplate. thank for any help
0
votes
1answer
49 views

How do have two constraints on a UNION?

I have this code below. It works if i use only ONE WHERE variable but the moment i add another one, the query doesn't work. It works if i just use this one all unions: where ...
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
105 views

Gridview Template Fields not returning current values

I have a gridview that has ItemTemplate fields for both buttons and text fields, neither which are working correctly. The buttons are typical like this: <asp:TemplateField HeaderText="Delete" ...
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
96 views

How do I add my own variables to the handles structure from within a custom function of mine?

I have a question to ask the MATLAB gurus here .. So here is my code (only showing lines of code which are relevant to the problem here): mainProcess(hObject, handles) handles.Checkpoint2 =1; ...
0
votes
1answer
101 views

How do I access controls on my GUIDE figure from other functions?

I am using GUIDE to create a GUI for my MATLAB project. In one of my callbacks for a button, I call a function. [Name]= otherFunction(inputVariable); set(handles.name,'String',Name); After I ...
0
votes
0answers
137 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
393 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
850 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
87 views

Functions handles in matlab

i've a problem to understand this snippet of code output=lsqnonlin(@(argn) fun(arg1,arg2,argn),X0); My idea is that lsqnonlin will call the argn->fun function recursively,but i'm not sure. is it ...
0
votes
2answers
76 views

Get specific elements of a website displayed in firefox

I use a screenshot tool like SnagIt and this tool is able to make a screenshot of a specific element inside a website. I tried this feature with firefox, safari and ie, all runs fine. When I use the ...
0
votes
1answer
62 views

Handles and pointer to object

I have a python Interpreter written in C++, the PyRun_String function from the Python API is said to return a handle, however in my code I have it assigned to pointer to a PyObject? PyObject* presult ...
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 ...
0
votes
1answer
381 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 service I currently have ...
0
votes
3answers
174 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, i create handles to ...
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 ...