Tagged Questions
The handle tag has no wiki summary.
12
votes
6answers
14k views
What is a 'Handle' in C++?
I have been told that a handle is sort of a pointer, but not, and that it allows you to keep a reference to an object, rather than the object itself. Some further clarification would be lovely though, ...
9
votes
1answer
196 views
Hide VCL Classes
There are some program tools such as WinSpy++ which will allow you to hover over the Handle of any Control/Component and return the Class Name of that Handle. So for example, if I dropped a TMemo on a ...
8
votes
7answers
2k views
How to find that Mutex in C# is acquired?
How can I find from mutex handle in C# that a mutex is acquired?
When mutex.WaitOne(timeout) timeouts, it returns false. However, how can I find that from the mutex handle? (Maybe using p/invoke.)
...
7
votes
1answer
131 views
How to get PIDs that are using given file name in C#?
How to get PIDs of processes that are using a given file name and mutex name?
(Not by custom kernel driver, but in C# in user mode.)
UPDATE: Thanks to Daniel Renshaw I found a script that lists all ...
7
votes
3answers
1k views
Handle a JNI crash
I have a dll that contains legacy C code, I call this dll via JNI, but sometimes the C code crashes and causes the JVM to terminate. Is it there a way to avoid JVM crash? Can I handle the JNI fault ...
7
votes
13answers
2k views
pointer vs handles in C (are the terms used to convey separate things?)
Recently, I read a white paper by an individual who refers to a pointer to a struct as a handle. The author was clearly someone who had written C code on the windows platform previously. Googling ...
7
votes
3answers
8k 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 the following code ...
6
votes
4answers
108 views
Is zero ever a valid handle?
There is a SafeHandleZeroOrMinusOneIsInvalid class in the .NET Framework, as well as a SafeHandleMinusOneIsInvalid class.
Why is this? In which situations is zero ever a valid handle?
6
votes
1answer
740 views
How can I tell how much memory a handle object uses in matlab
If I declare an object to be a subclass of handle
classdef obj < handle
my object is now essentially a "pointer" to some memory somewhere. How do I find out how much memory my object is using up?
...
6
votes
4answers
2k views
Determine path to registry key from HKEY handle in C++
Given a handle to a Windows Registry Key, such as the ones that are set by ::RegOpenKeyEx(), is it possible to determine the full path to that key?
I realize that in a simple application all you have ...
5
votes
1answer
226 views
How to check if a given process is running when having its handle
I am using ShellExecuteEx to start an application.
After successful start im reading TShellExecuteInfo.hProcess to obtain a handle of the started process.
I would like to periodically check if the ...
5
votes
3answers
187 views
What is a “handle”? [closed]
Possible Duplicates:
What is a Windows Handle?
What exactly is “handle” ?
I see references to window handles, controls which have a reference to a window handle, etc. But I ...
5
votes
2answers
509 views
Must I CloseHandle() on a thread handle?
_beginthreadex returns a handle to a thread:
m_hStreamStatsThread = (HANDLE) _beginthreadex( NULL, 0, StreamStatsThread, this, 0, NULL );
This handle may be used if you need to refer to the thread ...
5
votes
4answers
668 views
Forcing the creation of a WPF Window's native Win32 handle
I need to access the Win32 window handles of some of my WPF windows so I can handle Win32 activation messages. I know I can use PresentationSource.FromVisual or WindowInteropHelper to get the Win32 ...
5
votes
4answers
570 views
How to send function keypress (F1..F12) to a console app in .NET
I am writing a windowed .NET app in C#, which runs a third party console application via the Process class, as hidden as possible (CreateNoWindow, RedirectStandardOutput, etc.).
I've redirected it's ...
5
votes
2answers
146 views
What is the magic behind perl read() function and buffer which is not a ref?
I do not get to understand how the Perl read($buf) function is able to modify the content of the $buf variable. $buf is not a reference, so the parameter is given by copy (from my c/c++ knowledge). So ...
5
votes
3answers
6k views
How do you obtain Current Window Handle Count and Window Handle Limit in .NET?
I want to obtain the current number of window handles and the system-wide window handle limit in C#. How do I go about this?
4
votes
1answer
83 views
Count of Open Handles
You can use the program Process Explorer to see how many handles running applications have. Is there a way with Delphi code to get this number? I am interested in tracking the number for the ...
4
votes
1answer
63 views
Can the handle be same on two windows?
Suppose if a window with handle 123456 is closed and another window is opened. Can Windows assign handle 123456 to the new window in the rarest possibility?
4
votes
3answers
137 views
What can cause section handle leaks?
This is a follow-up question to my previous question.
As suggested in this answer to my previous question, I used ProcessExplorer to analyze a list of handles that my application is using to find a ...
4
votes
1answer
137 views
Can a Window Handle in .NET change it's value?
During the lifetime of a .NET process, does the handle of a System.Windows.Forms.Form, lets say the main form used in Application.Run(form) actually change it's value, i.e. if using the value of the ...
4
votes
2answers
126 views
Why doesn't my Perl blessed filehandle doesn't return true with `can('print')`'?
For some reason, I can't get filehandles working with Expect.pm's log_file method. I originally got help on How can I pass a filehandle to Perl Expect's log_file function?, where it was suggested ...
4
votes
2answers
816 views
How to make a program not show up in Alt-Tab or on the taskbar
I have a program that needs to sit in the background and when a user connects to a RDP session it will do some stuff then launch a program. when the program is closed it will do some housekeeping and ...
4
votes
2answers
2k views
Convert an IntPtr window handle to IWin32Window^
How do I convert a handle acquired from a form/control's Handle property, to a IWin32Window^ ?
4
votes
2answers
374 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 could track down to ...
4
votes
3answers
1k views
Detect file handle leaks in python?
My program appears to be leaking file handles, how can I find out where?
- My program uses file handles in a few different places - output from child processes, call ctypes api (imagemagick) opens ...
4
votes
8answers
11k views
C# compile error: “Invoke or BeginInvoke cannot be called on a control until the window handle has been created.”
I just posted a question about how to get a delegate to update a textbox on another form. Just when I thought I had the answer using Invoke...this happens. Here is my code:
Main Form Code:
using ...
4
votes
4answers
4k views
How do I find the handle owner from a hang dump using windbg?
How do I find out which thread is the owner of my Event handle in windbg:
I'm running
!handle 00003aec f
and get
Handle 00003aec
Type Event
Attributes 0
GrantedAccess 0x1f0003:
...
4
votes
1answer
604 views
Standardized Error Classification & Handling
I need to standardize on how I classify and handle errors/exceptions 'gracefully'.
I currently use a process by which I report the errors to a function passing an error-number, severity-code, ...
3
votes
1answer
53 views
Creating handle feature for drag and drop plugin - jquery
I'm developing a drag-and-drop plugin for jQuery. It's going well, but I don't know how to implement the handle feature, which is very important in such a plugin.
I really don't know how to get this ...
3
votes
3answers
46 views
Can properties of an object handle returned from a function be used without first assigning to a temporary variable?
I have a function that returns a handle to an instantiated object. Something like:
function handle = GetHandle()
handle = SomeHandleClass();
end
I would like to be able to use the return value ...
3
votes
1answer
203 views
Matlab ode45. How to change a parameter inside it while calling it?
I'm new with Matlab. I hope you can help me.
I have to solve a system of ODEs using ODE45 function. Here is the function which describes my equitions.
function dNdt = rateEquations(t, y)
...
3
votes
2answers
187 views
How to get the ID of MATLAB handle object?
The problem comes when I am trying to use MATLAB handle objects as key values in MATLAB containers.Map.
ld( h1, h2 ) defines a linear order on handle objects, so there should be no limitation on ...
3
votes
2answers
235 views
Initialize window handle for form and child controls without displaying
Is there a way to programmatically force a form and all of its child controls to have window handles without it being visible? It looked like CreateControl would do it, but that only seems to work if ...
3
votes
2answers
318 views
Why does GetWindowText hang with a “closed” handle but not with a random one
Using the following code
[DllImport("user32.dll", EntryPoint = "GetWindowText", ExactSpelling = false, CharSet = CharSet.Auto, SetLastError = true)]
private static extern int ...
3
votes
2answers
99 views
Call actual function from blur()
I'm trying to write some jquery that will call a function when an object is blurred. Because of some of the requirement in my underlying code, I need to call a function, like this:
...
3
votes
3answers
444 views
Delphi: How can i get Handle for TComboBox component?
As far as I know, Combobox consists of two components: Edit and ListBox. How can I get Handle of Combobox, if I have handle of it's Edit field ?
I tried to use GetWindow(MyHandle, GW_HWNDNEXT), where ...
3
votes
2answers
148 views
What are the side-affects of ensuring every control created has a handle in .NET?
In the past, I've suffered from a freezing issue that was the result of a Control being used to marshall calls on the UI thread before a handle has been created for that control. (See Kim Greenlee's ...
3
votes
0answers
215 views
How to avoid Safe handle has been closed
I have the following code in a test:
private void LoadIncomeStatementViewModel()
{
using (var evt = new AutoResetEvent(false))
{
EventHandler handler = (sender, e) ...
3
votes
3answers
231 views
What exactly is “handle”?
I've often heard about "handles", what exactly are those?
Edit:
For instance I have heard about:
windows handles
event handles
file handles
and so on. Are those things the same? Or they are some ...
3
votes
2answers
279 views
How do I find an annotation handle in MATLAB?
I'm trying to implement a modified version of datetick2 from the MATLAB FEX. When plots are zoomed in on a small date range, the day/month/year, etc. isn't shown, depending on the range of times in ...
3
votes
3answers
93 views
C Handles - How to work with them?
I have in some documentation for a plugin for Dreamweaver I am making that says the following:
void **connectionData
• The connectionData argument is a
handle to the data that the agent
...
3
votes
1answer
352 views
Access is denied - when trying to get the url (text) from address bar's handle
I'm trying to extract the URL from the address bar of IE. (IE 8 on Windows 7) using the following C# code.
static string GetUrlFromIE()
{
IntPtr windowHandle = ...
3
votes
1answer
523 views
How can I tell if a given hWnd is still valid?
Please forgive my ignorance, I'm completely new when it comes to winforms programming.
I'm using a third-party class that spawns an instance of Internet Explorer. This class has a property, hWnd, ...
3
votes
4answers
2k views
lseek/write suddenly returns -1 with errno = 9 (Bad file descriptor)
My application uses lseek() to seek the desired position to write data.
The file is successfully opened using open() and my application was able to use lseek() and write() lots of times.
At a given ...
3
votes
1answer
212 views
is it possible to resize/hide Window Standard Dialog (“choose file to upload” window)?
The "choose file to upload" window which pops up when the browse button is clicked in the file input element on a web page.
Is it possible to hide/resize this "choose file to upload" window using ...
3
votes
4answers
1k views
Force create handle for Control C#
I'm currently creating a silent print module. The current control I'm using is, it's making sure that the control handle is already created (IsHandleCreated). I did everything to cheat this with no ...
3
votes
2answers
466 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 renamed). The ...
3
votes
1answer
855 views
jquery sortable handle IE vs Firefox
i'm trying to use jquery to implement a portlet/widget style interface, with 3 columns and drag and drop within and between them. it's working almost completely, except for the following little bug. ...
3
votes
2answers
417 views
How do i mock a method that accepts a handle as an argument in OCMock?
I'm trying to mock a method that has the equivalent of the following signature:
- (NSDictionary *) uploadValues:(BOOL)doSomething error:(NSError **)error
I want it to return a small dictionary so ...