The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
15 views

get active textview or activity using IME android

Im developing an IME for android. I want to get the activity or textview control information while using my IME program. Like Hwnd property in win32 API or sender property of focused control in .Net . ...
1
vote
1answer
68 views

Capture a window inside my form

I want to capture a window inside my form, how can I do that? I remember seeing a code that did this. It worked with the window handle. It behaves kind of like WinRAR's extraction window:
2
votes
1answer
50 views

What are the implications of WPF not using Windows (pl.) for Controls?

I would appear that in a classic Windowstm application each control that is displayed (Button, ListBox, Menu, ...) gets it own Window (as in HWND). Further, with Windows Forms (WinForms), while the ...
1
vote
1answer
28 views

WindowsFromDc return null

I need some help about the win32 api and especially WindowsFromDc. I have a application which hook a another application. This two application communicate by a NamedPipe. In the second application, ...
3
votes
2answers
81 views

Is any application have HWND?

I'm learning C++. I wonder is any C++ application have HWND. Example bellow app, with no window created. If it have, how I can get its HWND? Thank you very much! #include <windows.h> int ...
-2
votes
2answers
170 views

C++ Why Sendmessage doesnt work?

In C#, this SendMessage function raise up volume successfull: [DllImport("user32.dll")] public static extern IntPtr SendMessage(IntPtr hWnd, int Msg, int wParam, int lParam); SendMessage(Handle, ...
0
votes
0answers
16 views

How to measuer the perfomence of an Android Hardware Accelerator in Jelly Bean

Hi I am creating a video viewer using surface view. I need to increase the performance of the view using "Hardware Acceleration". For this How I use "GPU rendering". How can I suitably use "Project ...
1
vote
1answer
56 views

Is this the correct way to assign a class' private HWND to another class?

I have the Game class which at some point will have its private HWND member m_hWnd gain a value: m_hWnd=CreateWindowEx(NULL, "Window Class", "Game", // Replace with gameName ...
1
vote
2answers
161 views

QT5 QPlatformNativeInterface and HWND

In one of the answers to Get HWND on windows with Qt5 (from WId) it is suggested to employ QPlatformNativeInterface in orer to recover the native window handler. To access the QT header though the ...
0
votes
0answers
60 views

Deadlock when adding COM GUI component to HWND of other process (Firefox, Plugin, IExplorerBrowser)

I am trying to embed an IExplorerBrowser (the main GUI of Windows Explorer) into a Firefox XUL or HTML page. The instance of IExploerBrowser is created using js-ctypes in the Firefox-process ( with ...
0
votes
2answers
116 views

Autohotkey - Trigger script when a certain button was clicked in a window

I know the actual button's handle. What I would like to check if that button was clicked and if so that would trigger an autohotkey script. Thanks in advance!
1
vote
0answers
169 views

How can I get the window handle (hWnd) for a Stage in JavaFX?

We're building a JavaFX application in Windows, and we want to be able to do some things to manipulate how our application appears in the Windows 7/8 taskbar. This requires modifying a Windows ...
0
votes
1answer
91 views

Java: DataOutputStream through socket is wrong on other side (which is Python)

I've got a Socket, s and an long, 1312992. DataOutputStream out = new DataOutputStream(s.getOutputStream()); out.writeLong(hwnd); out.flush(); Doing self.hwnd, = struct.unpack('!Q', ...
1
vote
1answer
140 views

Why doesn't FindWindowEx find all my buttons?

I'm supposed to write an automatic Installer. Just a programme you start and it should go through the installation wizard all by itself, without the user touching anything. The programme I'm working ...
0
votes
0answers
165 views

VB.NET / Get WndProc of a window?

I'm trying to get the WNDPROC from a open Windows Explorer window. I can successfully get the handle of the window, but "GetWindowLongPtr" returns always "0". I'm declaring the entry: ...
-6
votes
4answers
280 views

Get HWND of each Window Python

I am developing a python application and I want to get the HWND of each open windows. I need the name of the windows and the HWND to filter the list to manage some specifics windows, moving and ...
2
votes
2answers
471 views

Get Window Handle (HWND) of a window created by a library call

EDIT: I forgot to mention, I do not have source code for the DLL that creates window, so I can't actually change the function to return HWND. I am creating a Win32 application, and am using a DLL ...
1
vote
1answer
147 views

How to steal another application's video (via hwnd) and show it in separate application

I would like to take Skype's video and insert it into my own application. I am using skype4com to control the call, but I can find no reference or example which suggests a facility to get at its ...
-1
votes
1answer
85 views

SendMessage and FireFox/IE/Webbrowser

Is that possible to SendMessage to HTML Controls inside a Webbrowser component? if so, how can I get their HWND? I've been struggling with Spy++ and WINID and I couldnt access those controls HWND... ...
1
vote
2answers
442 views

convert c# windows panel to c HWND

I have a dll which accepts HWND, (code in the dll); void VideoCapture::SetVideoWindow(HWND VidWind) { VideoWindow = VidWind; } i am calling the above dll in a sample c#.net application by ...
0
votes
0answers
85 views

How to override OnPaint method for child element of DirectUIHWND window?

I need to change a background of some window. It is window of DirectUIHWND class, I have it's Handle. I can get pointers to it's child objects by using capabilities of IAccessile interface ...
0
votes
0answers
217 views

Find Internet explorer window (hwnd) using VB6 for Windows 8

I have an existing code that was working fine in all previous version of Windows except Windows 8 (and not working in one Windows Server 2008 machine, but working in another Win2008 machine. Dim SWs ...
0
votes
1answer
160 views

anyway to get web browser window handle using php?

I want know if there is a way to get current web browser window handle (HWND) using php, just like getting the browser information. i dont want to get the browser handle like this using COM class ...
1
vote
0answers
168 views

Covnersion from System::IntPtr to HWND

I have the following C++ code: HRESULT hr = S_OK; hr = DwmExtendFrameIntoClientArea(this->Handle, &margins); But, when I try to compile I get the following error: error C2664: ...
3
votes
1answer
331 views

How to get WNDCLASS from HWND?

I'm working now with playground SDK and need to get WNDCLASS of my game window. I haven't found anything in SDK, thats why I'm trying to do this with hWnd of game window. So is there any way to get ...
3
votes
2answers
240 views

Setting a HWND's lpfnWndProc from another process

I have a win32 main application that spawns a child process. At the moment I use CreateWindowEx to create a HWND in the main application followed by spawning a child process. The child process then ...
0
votes
2answers
146 views

WinAPI - how to organize lots of HWND objects?

As I push forward my first winapi UI, I find myself creating large, uncomfortable stacks of HWND variables in my WinMain file: HWND foo; HWND bar; HWND baz; HWND etc; int WINAPI WinMain(...) {} Of ...
0
votes
0answers
120 views

Getting the parent web browser control of a login pop up

I've been messing around, and just fell on a problem I can't quite figure out. I'm working on a MFC application which has an embedded web browser in one of its dialogs (IWebBrowser2 based ActiveX ...
0
votes
0answers
136 views

Click Through a WPF Layered Window to acees a Win32 Windows

Pretty long Title, I have a legacy Win32 application lets say for this example a Winform application with a Form (a Gdi HWND) with multiple edit control and button (each one as it own Gdi HWND). On ...
0
votes
0answers
89 views

Attach a HWND to a foreign, existing one (windows order)

just a hopefully not too long qquestion: Is it possible in C++ to "attach" to HWNDs to eachother? As an result the one should always follow the otehr one, no matter whether there are other windows ...
0
votes
0answers
356 views

GetForegroundWindow not always correct?

I have some code that seems to have an error. I didn't write it, in fact it is in c++ and until a few weeks ago I have never written any code in c++. We have a keyboard for a touch screen that we ...
2
votes
2answers
449 views

Delete an HWND object

I have a situation where when I receive a message I must delete a window just from the hWnd. I though this must be possible since CreateWindowEx creates an object by returning a HWND, I must be able ...
1
vote
3answers
96 views

How to get the next selected window?

I am writing an application that makes some changes to a selected window. I am trying to to figure out how to get the HWND of a window selected after a button press in c#. The flow would be something ...
0
votes
1answer
118 views

bitmap inverted color

Some time ago I asked a question about saving hwnd into ppm file. Thanks to a stackoverflow user I have solved my issue. Iy's work correctly but I still have a problem: the red and blue color are ...
0
votes
2answers
764 views

How to intercept WndProc messages from a HwndSource without any content

I'm trying to communicate with a native library that uses an HWND to pass messages back to the caller as follows: private void Example() { using ( var hwnd = new HwndSource( ...
0
votes
1answer
217 views

Embed c++ opengl window in Java window

i am trying to embed a c++ opengl window in a java window. I'm able to send the HWND of the opengl window to the java window through sockets. I'd rather not use JNI for it as i want to have 2 seperate ...
1
vote
1answer
349 views

Qt, c++ QML and HWND

I need to use a DLL -library that requests a window handle (HWND) to draw it self on a form. I don't want it to ocupy the whole main form but be displayed in for example a sub widget's area. Now this ...
0
votes
1answer
108 views

hwnd to ppm issue

I have a function which save a hwnd into a ppm file. This function is inspired by a msdn example. Both the msdn sample and my function work but ... I have an issue ... But first, here is the ...
1
vote
1answer
2k views

Get hwnd by process id c++

How can I get the HWND of application, if I know the process ID? Anyone could post a sample please? I'm using MSV C++ 2010. I found Process::MainWindowHandle but I don't know how to use it.
0
votes
0answers
214 views

Check if window is closed by intptr to hwnd

I have a watin browser instantiated with this.watinBrowser = new IE(true); I need to know when the watin browser is closed, unfortunately by design watin browser doesn't expose event handlers... ...
1
vote
2answers
51 views

In Windows, is a HANDLE an address in a process' VAS or an independent index into something else?

Simply put, if I were to call some API returning a handle, such as GetActiveWindow(), which would give me a handle of type HWND, what do I get back? Is it a unique address in the process' VAS, or a ...
0
votes
0answers
150 views

How to retrieve data from another program in WPF Application? C#

I'm a student trying to teach myself the basics of C#. I've searched all over the internet and have resulted to this. I need to be able to retrieve data (one set of numbers) from another running ...
2
votes
2answers
1k views

Cannot find child window with FindWindowEx function

I'm working on a little program to make my life easier when using Microsoft Remote Assistance (msra.exe). Using c++, I'm able to open msra.exe, then find the window handle. I then want to find the ...
1
vote
3answers
2k views

What is the correct way to use ShellExecute() in C to open a .txt

Alright so i need to open a .txt file that will be created in the same file as the program. I would like to use ShellExecute(); to do this and i have done a lot of research on it and i just cant ...
17
votes
1answer
628 views

Custom Messages in Non-Windowed Classes - need a default handler?

With a class (TObject) I have : private FHwnd : HWND; procedure HandleMyMessage(var Message : TMessage); message TH_MYMESSAGE; where TH_MYMESSAGE = WM_USER + 1 In the class constructor: FHwnd ...
2
votes
1answer
3k views

FindWindow() doesn't find my window [C++]

This is not a complex question. I'm having trouble finding the handle that belongs to iTunes. But although iTunes is running in the background, it keeps telling me it can't find the window. So I went ...
3
votes
2answers
2k views

Get Control/Form object from IntPtr Handle

I try to get the managed control from a shown Word Application window using following code: Process[] processes = null; processes = Process.GetProcessesByName("WINWORD"); Process wordProc = ...
2
votes
1answer
143 views

Wrapping and Passing HWND with Boost.Python

I've created a Boost.Python wrapper (using Py++) for a C++ legacy class that takes a HWND window handle in its constructor. However, after exporting the module to python when I try to use it, I get a ...
7
votes
1answer
202 views

What's the use of hPrevInstance?

I am not exactly an expert in Windows programming, but I have done some work in it for the past 11 months or so. And I've read some books about it. So, the idea I have of WinMain is... int WINAPI /* ...
0
votes
1answer
261 views

How can I determent if a window still exists with a HWND [duplicate]

Possible Duplicate: Validate HWND using Win32 API How can I determent if the window of a HWND still exists? I have a HWND of a window. The window exists in another process. I want to know ...

1 2 3