Tagged Questions
The window-handles tag has no wiki summary.
12
votes
9answers
20k views
Winforms issue - Error creating window handle
We are seeing this error in a Winform application. Can anyone help on why you would see this error, and more importantly how to fix it or avoid it from happening.
...
10
votes
3answers
1k views
Mac OS X: Can one process render to another process's window?
Greetings!
I'm currently porting a web browser plugin from Win32 to MacOSX. One of the features of the plugin is that when the plugin is loaded, it spawns a separate process that serves as the ...
4
votes
1answer
86 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
872 views
Grab and move application windows from a .NET app?
Is it possible for a .NET application to grab all the window handles currently open, and move/resize these windows?
I'd pretty sure its possible using P/Invoke, but I was wondering if there were some ...
3
votes
1answer
159 views
Detecting whether Skype is in “Compact View” or “Default View”
The way my application functions, is determined by Skype's view mode, due to the fact that my application is looking for windows of class TConversationWindow, which if in Default View is a child of ...
3
votes
5answers
2k views
Get window handle from window class name
I'm trying to get a window handle on a child window in my process and the only information I have is the window class name. Are there any win32 functions I can use for that? I'm doing this from C#.
...
3
votes
3answers
867 views
Can I send / receive window messages without a window?
I'm writing a .NET wrapper around an old MFC-based library we have. It's based around a class that sends notifications using window messages; it has a function that lets the user pass in a handle to ...
2
votes
2answers
699 views
How to programmatically exit from a second message loop?
I'm trying to create a second message loop to process/filter low level messages asynchronously in C#. It works by creating a hidden form, exposing it's Handle property to be hooked, and run a second ...
2
votes
4answers
553 views
How to get the main window handle of a process using JScript?
Is there any method in JScript to get the handle of the main window of a process by providing the process name? The Process.MainWindowHandle property works only in JScript .NET. Is anything similar ...
2
votes
3answers
3k views
C# get window handle after starting a process
Is there a way to get the window handle (IntPtr) for a window after its launched from a C# app with Process.Start()?
2
votes
3answers
5k views
What to do about “Error creating window handle” errors in a C# application?
I've already looked at this question, and I've already checked out the suggestions that were made there. My program creates and destroys a lot of UI controls (a lot of UI controls), and anything that ...
1
vote
2answers
41 views
Get specific window handle using Office interop
I'm creating a new instance of Word using the Office interop by doing this:
var word = Microsoft.Office.Interop.Word.Application();
word.Visible = true;
word.Activate;
I can get a window handle ...
1
vote
3answers
92 views
Are window handles unique, or do they ever get reused?
I am thinking if there are handles of the same value ?
To clarify my question, let's say I open Notepad, type in some text, save it and then close Notepad. If I repeat this a thousand times (or even ...
1
vote
2answers
298 views
EnumWindows and EnumChildWindows to keep my Treeview updated
I am trying to make a program similar to Winspector Spy. My problem is that I would like my Virtual Treeview to be updated at all times - that is, update it when a window is created, when a window is ...
1
vote
1answer
63 views
Is there an event when the window handle is destroyed
Since the destruction of a window handle disables the invoke mechanism, I do want to unsubscribe to an background-worker that notifies me.
So is there an event that is fired shortly before the window ...
1
vote
1answer
69 views
Setting carret-position in an External Application's text area?
Thanks to Rob Kennedy's answer to my question on how to set the Skype Chat window text.
However, whenever I set the text using
SendMessage(RichEditWnd,WM_SETTEXT,0,Integer(PChar(Edit1.Text)));
...
1
vote
0answers
369 views
Get Window Handle from Inspector [closed]
Possible Duplicate:
Open Event of Window and Handle of Window
Hello all,
How do I get a window handle (IntPtr) from the Outlook window I have just opened?
OutLook.Items items = ...
1
vote
2answers
702 views
C# List currently open files and programs
Is there a way I can get a list of all open applications and a list of all open files? For the files I only need the files that I opened (documents etc) not OS's open system files. The same for the ...
1
vote
2answers
128 views
Dump handles of Windows process and extra information about them
today my application throw a "no more handles" error on Windows, while allocating an image. To debug this I would love to get a list of all handles my application has aquired. If possible even with ...
1
vote
0answers
99 views
Get menu handle
I want to get the main menu handle for outlook using an API function, I tried to use Enumwindowchilds but it didn't get the menu handle.
This is the menu i want to get the handle for: Main
can ...
1
vote
4answers
464 views
Handling invalid window handle
The application retrieve window handles, using Enum* routines.
It happens that in the while the application manage the handle (get class name, window statistics...) of an enumerated/created window, ...
1
vote
2answers
1k views
Get all window handles for a process
Using Microsoft Spy++, I can see that the following windows that belong to a process:
Process XYZ window handles, displayed in tree form just like Spy++ gives me:
A
B
C
D
E
F
G
H
I
...
1
vote
2answers
365 views
OutOfMemoryException, large Private Data
In previous series:
http://stackoverflow.com/questions/2543648/outofmemoryexception-stack-size-is-huge-large-number-of-threads
I have a .net windows service that consumes a lot of memory. The GC ...
1
vote
0answers
104 views
Detect someone hooking onto a window handle
Can you detect if someone is trying to hook into a window handle of your application (or a part thereof) in .NET?
1
vote
1answer
4k views
Get child window handles in C#
I'm starting a process in C# and then sending Windows messages to that process with SendMessage. Usually I send the messages to Process.MainWindowHandle, but in some instances I might need to find a ...
1
vote
1answer
598 views
Modifying opacity of any window from C#
Is it possible to modify the opacity of all opened windows from C#. I googled for minimizing the windows and i came to know that its possible with pInvoke calls. It even worked. Similarly is it ...
1
vote
5answers
1k views
GUI Automation testing - Window handle questions
Our company is currently writing a GUI automation testing tool for compact framework applications. We have initially searched many tools but none of them was right for us.
By using the tool you can ...
0
votes
0answers
23 views
Controlling WebcamXP via Windows Messages
I recently downloaded a piece of software called WebcamXP that, according to the user manual, allows you to control it by sending specific messages to it using SendMessage(). I've defined the methods ...
0
votes
0answers
45 views
What can cause InvalidOperationException: Too many calls to ResumeUpdateMenuHandles?
I'll try an explain this as best I can...I have an application that is opening a window after another is closed based on a text entry and button press of that window.
The first window is opened and ...
0
votes
0answers
159 views
Activate Window from code problem
I have a window on my desktop called: "Kaspersky Anti-Virus Configuration Wizard"
Here is some info about the window:
>>>> Window <<<<
Title: Kaspersky Anti-Virus ...
0
votes
0answers
209 views
Get foreground CHILD window
Whenever Skype is in Default View, the TConversationWindow's become children of the tSkMainForm Window.
I am having problems finding out which TConversationWindow is active - however it's not like an ...
0
votes
0answers
57 views
Can't Get A Window's DC In Windows XP Direct X
I've made a program for windows 7 (in short, it uses a game's window DC) and when trying it out in windows XP, the returned DC is null (or 0 since its IntPtr).
NOTE : In windows 7, the program ...
0
votes
1answer
190 views
Get handles of process forms c#
I have a process which opens a form and a tray icon on startup. I want to discover from a c# application what is the handle of the form and tray icon of the exe process above, and what are the handles ...
0
votes
0answers
46 views
Scrollbar window handler in Word 2010
How do I get the above handler in order to do WM_VSCROLL?
using "NUIScrollbar" class , "Vertical" window name but still doesnt send the message from OS to the application, and yet the return value ...
0
votes
0answers
83 views
How to receive IE window handle
How to receive the handle of the IE window, so I could scroll the webpage?
(GetForegroundWindow is not the window handle that we want)
0
votes
1answer
122 views
Use HWND (or something similar) as Node Image in Virtual Stringtree
Is it possible to display an Icon obtained from an external Handle, as the Image of my Node in Virtual Stringtree? The Node's Data contains the HWND.
0
votes
2answers
236 views
Creating a function to dig for Windows Handle by Classname(s) Only
So I just got an answer to my question about getting the Skype Chatbox handle.
I am now trying to create a simple function, that digs for a handle. Here is how I am hoping to be able to use it:
...
0
votes
2answers
245 views
Finding external Window's position?
How can I find the Screen-relative position of a Window Handle in Delphi? (X,Y)
0
votes
1answer
370 views
Managed method for SetParent() on form
How can I show a form as a child of a window that isn't in my program?
I have a window handle to what should be the parent, but I don't see any managed method for SetParent() on a form. Is there ...
0
votes
4answers
1k views
How do I create a message-only window from windows forms?
I'm trying to create a message-only window to receive window messages from an MFC library class, within a winforms application.
I've tried subclassing NativeWindow, and in the constructor requesting ...
-1
votes
1answer
267 views
Using WM_GETTEXT - what to set the Size?
Var
PText : array[0..512] of Char;
Handle, Child : HWND;
begin
FillChar(PText,512,0);
Handle := FindWindow('Notepad',nil);
Child := FindWindowEx(Handle,0,'Edit',nil);
Caption := ...
-3
votes
1answer
218 views
C# Using PrintWindow
I am trying to capture a window in win7 without disabling aero and I hear PrintWindow Works.
But I'm not sure how to use it, I found some articles but I can't see any image or bitmap output in any of ...