Tagged Questions

0
votes
1answer
179 views

In wx.Python, how would I get the window handle (hwnd) to my frame and set its style?

How can I get a handle to my current window in wx.Python (hWnd) and set it's style to WS_EX_NOPARENTNOTIFY, or can I set this when I initialize the frame? This question is a resul …
1
vote
1answer
54 views

WPF Memory Leak on XP (CMilChannel, HWND)

My WPF application leaks memory at about 4kb/s. The memory usage in Task Manager climbs constantly until the application crashes with an "Out of Memory" exception. By doing my own …
2
votes
3answers
62 views

Is HWND visible?

Those darned users and their minimized windows. In C#, if I have a window's HWND, is there a way to tell if it is visible on the desktop?
0
votes
4answers
103 views

Discover hWnd where mouse is

A long time ago I remember using a program where I just moved my mouse around the screen and it displayed the hWnd information (and some other stuff) of the window (and parent, and …
0
votes
1answer
59 views

Win32: How do I make an HWND transparent to clicks?

I want an HWND that is transparent to clicks (i.e. passes them through to windows underneath). At first I tried WS_EX_TRANSPARENT but that has all sorts of redraw problems. Window …
0
votes
2answers
21 views

Converting HWND object to other object type

I want HWND object to be converted to my user defined object..may i know how can i archive this? Below is my sample code : File1.cpp { XYZ(*this); } File2.cpp { XYZ(HWND h …
2
votes
4answers
249 views

How to get tooltip text for a given HWND?

I'm looking for a way to get the tooltip control (if any) which is associated with a given HWND. The text of the tooltip control would be sufficient, too. The closest thing I found …
3
votes
4answers
111 views

What is the lifetime of a CWnd obtained from CWnd::FromHandle?

According to msdn, when I get a CWnd* with CWnd::FromHandle, The pointer may be temporary and should not be stored for later use. What is meant by "later use" is not clear to …
3
votes
9answers
305 views

Loading a WPF Window without showing it

I create a global hot key to show a window by PInvoking RegisterHotKey(). But to do this I need that window's HWND, which doesn't exist until the window is loaded, that means shown …
-1
votes
8answers
314 views

getting the HWND for my own application in C

since I couldn't find an answer to this question I researched a bit further into the MSDN and I found isChild(). It might give me the answer to that other question. Now, in order …
1
vote
1answer
134 views

QWidget::find(hwnd) always returning 0

Hey, I'm grabbing a window handle with the following code: HWND hwnd = FindWindow(L"QWidget", NULL); and it returns a HWND to a QWidget (I checked with Spy++, the handles match) …
2
votes
5answers
1k views

Can I get the behavior of setting my WinForms form’s owner using an hwnd / NativeWindow?

My application is a vb6 executable, but some newer forms in the system are written in C#. I would like to be able to set the C# form's Owner property using a handle to the main ap …
1
vote
1answer
584 views

find the hwnd of a window which user selects, through c#

I've written a c# program which reproduces keyboard strokes programatically. My idea was to pass these keyboard strokes to another application which may have a textbox set in focus …
2
votes
1answer
205 views

c# HwndSourceHook with Windows.Forms

Hello, i found this code: protected override void OnSourceInitialized(EventArgs e) { base.OnSourceInitialized(e); HwndSource hwndSource = PresentationSou …
0
votes
2answers
165 views

Is this hWnd a child of mine?

How can I tell if an hWnd belongs to one of my child controls? I want to do something like: if(this.Controls.Find(hWnd) != null) return false;

1 2 next
15 30 50 per page