Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
3answers
147 views

How can I close an app without a modal dialog box being shown?

I have an app that can optionally open PDF's after it creates them. If two reports are generated in succession with the same name, the second attempt fails if the first copy of acrobat still has the ...
3
votes
0answers
142 views

Best way to add items to another application's modal window?

What's the best way to add items to another application's modal window? The simple example I've written for this (as a proof of concept) uses a method that I suspect is much, much too processor ...
3
votes
2answers
714 views

VB.net findwindow/findwindowex

Hey all, i am trying to figure out how to go about finding this window's label when the control name is the same as all the other labels on the program. WindowsForms10.STATIC.app.0.378734a ...
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#. ...
2
votes
3answers
1k views

How to use Control.FromHandle?

i saw a method called Control.FromHandle wich (should) give you the access to it. Now, i wanted to try it using this code [DllImport("user32.dll", SetLastError = true)] static extern IntPtr ...
2
votes
2answers
587 views

Sending keystrokes from a C# application to a Java application - strange behaviour?

I'm trying to send keystrokes from my C# program to a Java application The code for sendig keys is: private void SendKeysToWindow(string WindowName, string KeysToSend) { IntPtr hWnd = ...
1
vote
2answers
92 views

WinApi FindWindow by a part of title

How I can get a window's descriptor if I know only a part of it's title and it's className?
1
vote
0answers
99 views

FindWindow error 183

Does anybody know what would cause the FindWindow function to return an ALREADY_EXISTS error (183)? A FILE_NOT_FOUND (2) I can understand, but why would it return a 183.
1
vote
2answers
103 views

Program making use of FindWindowEx stops working on Server 2003, why?

I have a simple program that uses FindWindowEx & strncmp() inside a callback passed to EnumChildWindows, to find a dialog created by a third party application, and press a button. This code works ...
1
vote
1answer
122 views

Error Getting Form Handler (Vb.net)

I have the current code: Public Declare Function FindWindow Lib "user32.dll" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Long <DllImport("user32.dll", ...
1
vote
2answers
3k views

FindWindowEx from user32.dll is returning a handle of Zero and error code of 127 using dllimport

I need to handle another windows application programatically, searching google I found a sample which handles windows calculator using DLLImport Attribute and importing the user32.dll functions into ...
1
vote
1answer
1k views

Desktop Icon manipulation - how to get to ge a handle to SysListView32 when themes with picture rotation are enabled

I'm trying to move icons around the desktop, everything works well until a theme that has picture rotation is picked. With a basic Windows 7 theme, the SysListView32 is child of "SHELLDLL_DefView" ...
1
vote
2answers
736 views

C++ — FindWindow win32 API always fails!

I am having problem with FindWindow() function in C++. I am using two programs -- Program A and program B. Both are console-applicaitons in native code. Program A initialises int i and string s with ...
1
vote
1answer
248 views

getting a delphi app to close a dialog that popped up from a driver

I have a delphi app that tries to open a webcam. Under Windows 7 it fails occasionally (that's another story/question/thread) but the webcam driver also pops up a dialog titled "Video Source" ...
1
vote
5answers
440 views

FindWindow doesn't return IntPtr.Zero, although the window is already closed

I'm trying to control a Java application from my C# program. Before the program begins to input data, it checks if there are any pervious data input windows, and tries to close them. The code for ...
1
vote
1answer
680 views

Python Win32GUI Find Window

I have a GUI Windows application and I want to control it using the extension Win32gui in Python. How can I find the string s that I must give to the FindWindow function? I need to use the following ...
1
vote
1answer
103 views

how do i make this so everything can use it? C++

im somewhat new to c++ so i don't know how to do this but my main point in recoding this is to incress the speed of my program, i have been coding a project and my code is: HWND hWnd = ...
1
vote
2answers
1k views

FindWindowEx - Select textbox if there are several textboxes with same classname

I want to use SendMessage/PostMessage to send some keys to an applications textbox. I used Microsoft Spyxx to get class name of this textbox. Now I have the problem that there are several textboxes in ...
1
vote
3answers
402 views

Capturing text from controls on a Java Applet

Is it possible to capture the text of say a Edit Box or Label control on a Java Applet? In a more traditional Win32 program this can be accomplished using FindWindow, FindWindowEx together with ...
0
votes
0answers
64 views

AfxOleControl42 call data problem C#

I must take data from other C++ application in a C# project. I use this codes for take data IntPtr win = FindWindow(null, "Other Program"); IntPtr txt = FindWindowEx(win, IntPtr.Zero, ...
0
votes
2answers
218 views

FindWindow is not working?

I just want to know why this code is not working? HWND hWnds = FindWindow(NULL,(LPCTSTR)"Calculator"); It always returns NULL for the hWnds.... Any idea how to fix this? Thank you :)
0
votes
1answer
244 views

Windows API function FindWindow returns always 0 when exe is executed within PHP exec() function

I have made a command line app to do some tasks on the server. For example, it 'tracks' a window and send keys to it. I use the windows API function findWindow() to find the window. When i run the exe ...
0
votes
1answer
166 views

include the GUI from another process in my qt application

Would you be kind to answer these questios ? Is there an alternative to FindWindow, but which is cross-platform ? How can I include the GUI from another process in my qt application ? Thanks.
0
votes
0answers
78 views

From vista, it dosen't work findwindow call from driver

Situation is 1) Printer driver create A1 process. 2) A1 process find A2 process with findwindow api. ( A2 process is not service., it dosen't work from vista ) 3) A2 process send message with ...
0
votes
1answer
435 views

vb.net getting listview items from sendmessagestring

I am using the following code to try to grad whats in the listview on another window: Private Declare Function SendMessage Lib "user32.dll" Alias "SendMessageA" (ByVal hWnd As IntPtr, ByVal wMsg As ...
0
votes
1answer
985 views

VB.net SendMessage waiting problem

I am using the following code to click a button for displaying another form to click on: Dim hwnd As Integer = FindWindow(vbNullString, "Virtual CDRom Control Panel") Dim x As Integer = ...
0
votes
1answer
1k views

user32.dll FindWindowEx, finding elements by classname on remote WPF window

I have a WPF application that is being started from a command-line application. I am trying to do some simple automation (get/set text, click some buttons, etc). I cannot seem to find any of the ...
0
votes
1answer
345 views

Windows Forms C# Program: How to check button status (enabled/disabled or visible/hidden)?

I have a program that, on error, will stop running. When it stops running, the "start" button is enabled and the "stop" button disables. While the program is running (after clicking "start"), the ...
0
votes
1answer
386 views

How To register a Windows Class and Find the Window using registered class

I am creating an MFC application which will be launched on click on Explorer Context (Rightclick) menu. But I need to launch only single instance of the application. For that I have to use FindWindow ...
0
votes
3answers
998 views

Findwindow and SendMessage

Hey all i am trying to figure out why this is not sending a ALT+F to notepad! Private Declare Function FindWindow1 Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As ...
0
votes
2answers
719 views

Use wildcards with FindWindow api call with mfc

I am using FindWindow in an mfc application. HWND hWnd = ::FindWindow(NULL, _T("foobar v5")); I would like to use FindWindow with wildcards so that I can match just foobar. Thanks
0
votes
1answer
92 views

VB.net sendmessge to console box

Hey all, i am trying to send some text to a console box (dos box) from my vb program but i can not seem to get it working. Here is my current code: Dim blah As Long Private Const WM_GETTEXT As ...
0
votes
1answer
625 views

Find Window At Location Using Carbon And Carbon Problems In 64-Bit Applications

As I said in some questions today I´m looking for the way to get window or windowPart references at a certain location. Although I know I could use Cocoa for this purpose (I don´t know how to do it ...
0
votes
2answers
727 views

FindWindow vs GetActiveWindow - Why do they return differnt handles?

Anyone have an idea why this wouldn't work? IntPtr hWnd = FindWindow(null, "Calculator"); IntPtr hWnd2 = GetActiveWindow(); if(hWnd == hWnd2) { MessageBox.Show("Same"); } Invokes are: ...
0
votes
1answer
2k views

FindWindow with partial window title (Windows, C)

Is there any API similar to FindWindow() but that searches the windows by partial title? The reason is that I need to the handle to a window that has a fix part on the title but the other part changes ...