3
votes
2answers
68 views
Out of memory on _beginthreadex
I currently debug a multi threaded application, which runs without errors until some functions where called about 2000 times. After that the application stops responding, which I …
0
votes
3answers
35 views
How to capture mousemove events beneath child controls.
Hi, i am trying to handle a mouseclick event on a particular form that should fire if the mouse cursor falls between a set of coordinates - lets say a square.
I understand that if …
2
votes
5answers
76 views
Track handle creation / deletion
I have a large old program which has some rather complex graphical displays (all via standard API calls). The program appears to be working fine, but I recently looked at the "hand …
0
votes
1answer
72 views
boost::thread causing small event handle leak?
I'm debugging this database project. It wraps access to SQLite for a higher level application. It's designed to run asynchronously, that is, it has methods like ExecuteRequestAsync …
0
votes
1answer
119 views
Drag/Size Handle implementation
I'm looking for drag/size handle implementations or explanations.
Perhaps I'm using the wrong nomenclature, but I mean the "handles" that appear around an object (mostly in drawin …
1
vote
5answers
133 views
Get handle of a window that has no title.. (C#)
How can we get the handle of a window that doesn't have a title? Is there a way to enumerate all the windows on desktop and filter the window that don't have a title (in my case, t …
1
vote
3answers
273 views
wxPython won’t close Frame with a parent who is a window handle
I have a program in Python that gets a window handle via COM from another program (think of the Python program as an addin) I set this window to be the main Python frame's parent s …
2
votes
2answers
49 views
What type of file deletes itself as soon as the handle is closed?
Let's say I have a Windows application that creates a file and writes data to it. The application has opened the file exclusively so no other processes can read the data in the fil …
1
vote
1answer
25 views
How to get window handle from a CDialog derived class ?
Hi All,
Is there a way to retrieve window handle from a CDialog derived class (like CWnd::m_hWnd member) ?
Thanks
0
votes
3answers
119 views
Freeing java file handles
We have a rather large and complex application written in Java which is running on top of the Gridgain package. The problem I am having is that this application will sit there proc …
2
votes
3answers
66 views
How to get the name of an Event from a handle
I have an array of Win32 event handles that I'm waiting on using WaitForMultipleObjects(). This returns the index in the array of events that triggered but what I need to know is …
0
votes
2answers
28 views
Close LogonUser Handle if Failed Logon?
The LogonUser function http://msdn.microsoft.com/en-us/library/aa378184(VS.85).aspx returns a handle that you can use to impersonate the user, when you are done using it you call …
0
votes
3answers
105 views
Finding the handle to a WPF window
Windows forms had a property win1.Handle which, if I recall, returns the handle of the main window handle?
Is there an equivalent way to get the handle of a WPF Window?
I found t …
2
votes
2answers
174 views
Sever a .NET COM Interop assembly from its hosting process
When an ActiveXObject is hosted in a Windows Desktop/Sidebar Gadget, that ActiveXObject is sort of cached and the DLL file for it is locked (meaning it cannot be moved, deleted or …
1
vote
1answer
45 views
JQuery - handle clicking
Hello, I have such construction:
<div id="slider">
<div id="nav">
<div class="sliderPart">
…
