Tagged Questions
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 ...
4
votes
1answer
292 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 ...
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 ...
2
votes
3answers
272 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 ...
1
vote
2answers
202 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
2answers
129 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
0
votes
2answers
869 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 ...