The main purpose of Spy++ is to log messages that are being passed around in Windows.

learn more… | top users | synonyms

0
votes
0answers
18 views

Visual Studio 2010, Fetching code location related to a particular UI Dialog

I'm using Visual Studio 2010. Using spy++ I'm able to get numerical values for WndProc, hWndDialog, hWndParent, classId etc. for a Dialog window. Is there a way to trace out exactly where code for ...
1
vote
0answers
61 views

How to know the classname of a WPF application to use in FindWindowByClassName InnoSetup function

In InnoSetup, there is a function "FindWindowByClassName" to know if a program is allready in use. In my case, I want to know if my wpf application is in use before runing the InnoSetup update, but I ...
0
votes
0answers
165 views

How to programmatically press the open button in file download browser dialog

I open a pdf file in a IE browser. the http response as the following header Response.AddHeader("content-disposition", "attachment; filename=" + fileInfo.Name); in order to have the correct file ...
1
vote
2answers
182 views

I can't use FindWindowEx() to find control

I want to open Microsoft Security Essential program and click Scan now button with VC . I can find window but Can't find control. This is my code when I run this code it show Control not found . I try ...
0
votes
2answers
155 views

Automation of ToolStrip Button Click Issue

I'm trying to automate a windows form application using vb.net. I do not have the source code for the program I would like to automate. With Spy++, so far I've been using handles for buttons and have ...
0
votes
1answer
48 views

What is the constant for “Previous Window” in Spy++?

In Spy++, can you click a Window in the list, then right-click it, select "Properties", and you will be shown a tab window in which you can select the tab "Windows". In this window you can see the ...
0
votes
1answer
65 views

In Spy++, what value is the control's name?

I'm using System.Windows.Automation to get some UI control text values from labels in a group box. I'm trying to use spy++ to get the control names I'm looking for. AutomationElement Root = ...
0
votes
0answers
19 views

What is the meaning of the Spy++ Icons [duplicate]

Possible Duplicate: Why are some items greyed out in Spy++'s Windows view? Does anyone know what the different icons in Spy++ Window View mean? Some are gray, others not. I couldn't ...
0
votes
1answer
209 views

Using Spy++ in Windows 8

I am writing a program in Windows 8. Now I come across a problem when using SPY++. Usually, we can get "Window Proc" from SPY++ in Windows 7. But in Windows 8, I can only get ...
0
votes
0answers
36 views

Usages of SPY & UISPY, are they similar?

Hi Could someone list out the difference/usages of UISPY & SPY++ ?
0
votes
1answer
121 views

How to `FindWindow` a window that doesn't show up in Spy++?

I'm debugging a Windows application with IDA Pro and I see that at one point it calls FindWindowA and successfully locates a window with the given class name. However when I use Spy++ to locate the ...
0
votes
1answer
183 views

Control name from other window

I need to read a text value from other window and query that value to another application (my question will be around the 1st task)…so, I’m “spying” other window (some 3rd party application we use in ...
0
votes
0answers
112 views

Windows Proc “Unavailable” for processes spawned by service

I'm attempting to use psexec to spawn a process on a remote machine (for automated testing purposes) and noticed that the spawned process wasn't correctly responding to a message (WM_GETOBJECT, but ...
2
votes
1answer
225 views

Get text from Spy++ window

I'm trying to get text from 'Messages' window in spy++ using c++. i have tried to send WM_GETTEXT,LB_GETMESSAGE message to the window and its children, and its not working. The code tested on ...
1
vote
1answer
1k views

Sending Click with user32.dll, messages appear in spy++ but button isn't clicked

I have problems with sending a Click to an application with the user32.dll. the button does not be clicked, but in spy++ the message do appear. i'm using win7 x64 The code is written in c#: ...
0
votes
0answers
142 views

WM_NCHITTEST messages looping endlessly

We are testing an application before we shall launch it into production, and we found a real show-stopper which we are not able to figure out. We use the application, then we leave it and let the ...
0
votes
0answers
111 views

command line analog of Spy++(Spyxx)

I'm looking for command line analog of Spy++(Spyxx). In output I expect list of window controls (pushbuttons, checkboxes, etc) like a tree. For example: ...
1
vote
1answer
302 views

WM_KEYDOWN message not sent

I've been trying to track down a bug in my program. I noticed that whenever I am holding down the up and left arrow keys and press the spacebar, a WM_KEYDOWN message with a WPARAM of VK_SPACE is never ...
0
votes
1answer
343 views

Can't simulate action properly. SendMessage in c# (spy++)

I've got a problem with simulating in game's process this action: - mouse_down - mouse_move - mouse_up When I do it manually, that's the spy++ output: mouse_down: mouse_move: mouse_up: So ...
3
votes
1answer
523 views

create the function “find window…” of spy++ in C#

I want to create the same function "Find windows..." of spy++ in C#. I have try with this function of the WINAPI: HWND WINAPI WindowFromPoint(__in POINT Point); ...
0
votes
1answer
382 views

Is there a program similar to Spy++ for .NET applications?

I've looked around and I haven't found anything that fits my needs. I wish for the program to be able to intercept the Win32 (?) messages that are being sent to my own application, which is written in ...
0
votes
2answers
161 views

Is the Window handle revealed by Spy++ unique to that computer, or unique to the application

Ok, so I have a Microsoft Access form which contains a textbox which I am trying to get a handle on from .Net My form is below: Using Spy++, I have found my textbox handle. A screenshow is below: ...
0
votes
1answer
183 views

How is Spy++ element highlighting working?

I'm using the Spy++ for my work with the MS UI Automation Framework, so i wanted to ask you if you know how the search / highlighting gui elements from the spy++ works. i'm talking about this: ...
0
votes
1answer
73 views

How to identify a window playing a video in a browser

I wish to understand how one can programmatically identify if a window is playing video content? I used spy++ to identify particular attributes for windows playing video but I did not find any ...
1
vote
1answer
136 views

webkit spy tool

I would like to view child component (class id, window text, pattern value etc) of a webkit created window. I have looked into almost everywhere on google but am still out of luck to find a spy tool ...
0
votes
2answers
326 views

Get a window text by handle

I use UI Spy and Spy++ to view windows text of some windows, but none offers a result. As people said, some windows are built up and executed by some components, say they are embedded inside those ...
1
vote
0answers
105 views

Controlling an Adobe Air application with an external program

Is there a way to control or monitor components of an Adobe Air application, with native application I can easily use Spy++ to find the components of a window and control/monitor it using windows API ...
8
votes
4answers
2k views

C# Hiding an application from the taskbar

I have been struggling to hide another application from the taskbar from my application. I have been using the SetWindowLong function in order to set/remove WS_EX_APPWINDOW on the extended style. I ...
1
vote
2answers
277 views

How does Spy++ construct it's process list?

Old title: Spy++ does not show my process - what does this signify? TL;DR - How does the Spy++ tool really construct it's process list? Stage We have a MFC desktop application (running on Windows ...
0
votes
0answers
128 views

window hierarchy in outlook 2010 and 2007

I developed add in for outlook 2007. Now i need to port to 2010. But the window hierarchy is completely different in both versions. please see attached images and tell me equivalent window in 2010. ...
0
votes
1answer
114 views

Tool to know Windows Form Application's Form fields

I am working on a WinForm Application. The Form has many fields/components but is poorly built. for example a field is used as user name on one case and used as folder path on the other case. Code is ...
2
votes
1answer
254 views

Why are some items greyed out in Spy++'s Windows view?

To modify a window of another program, I need to find a specific SysTreeView32 in it using EnumChildWindows API call. When I inspect the window using Spy++, there are a number of SysTreeView32's in ...
5
votes
5answers
2k views

Why Control.FromHandle(IntPtr) returns null in one hooked process and returns valid object of “Form”? in another hooked process?

I am facing a problem related to get out all the controls from some hooked process. My SpyDll launched into hooked process sucessfully, But when I check the statement Control control = ...
0
votes
0answers
81 views

Need to SendMesssage to control placed on the top of the main Window of the other process in .NET

I am solving a hooked process related problem. I have extracted the controls of other managed processes and simulated those controls on the some other separate process. After somehow drawing those ...
1
vote
1answer
824 views

Read a child control with multiple childs with classes having the same name?

I am currently trying to get the text of a control and while going down from the top window to the control I needed I got stuck in this control which has multiple chield with 2 controls having the ...
2
votes
2answers
345 views

Something like Spy++ for SWT?

I am looking for something like Spy++ but for SWT. I know there are solutions that help you out when you want info about Eclipse's plugins, so I guess this must be somewhat possible. In my specific ...
0
votes
1answer
6k views

C# get child handles using FindWindowEx by name and ordinal number

According to http://msdn.microsoft.com/en-us/library/ms633500(v=vs.85).aspx I define FindWindowEx function. using System.Runtime.InteropServices; [DllImport("user32.dll", CharSet=CharSet.Unicode)] ...
2
votes
1answer
1k views

Send message taken from Spy++

Hey guys, I am trying to send a message to a game (to automate text commands), the problem is that I can't figure out how to use the information from spy++ to write a C# sendmessage function. I was ...
4
votes
3answers
2k views

Managed version of Spy++ Tool?

Awhile ago, I needed a Spy++ like application for some .NET UI debugging. I found an old MSDN article with a sample that does things similarly, But that stopped working in newer .NET Framework ...
1
vote
1answer
590 views

How to pass the handle fetched from spy++ in sendmessage using c#?

How to pass the handle which I got using spy++ tool in sendmessage? ie. I want to pass this handle Handle Got from spy++ 00010540 in this function SendMessage(buttonHandle, WM_HSCROLL, ...
0
votes
5answers
372 views

How to use C# client to get information of clicked GUI element in another app?

Can a C# client record all keyboard and mouse events using hooks and collect information on the clicked GUI element? Which libary would you use? Is Spy++ an option or would one need a C++ DLL for ...
2
votes
2answers
450 views

Is there a Qt widget to browse the hierarchy of widgets in an app (similar to Spy++)?

We've got an app with a complex hierarchy of widgets and I want to be able to browse this hierarchy, view and edit properties (such as size) in a similar manner to Spy++. It doesn't need to be ...
2
votes
2answers
2k views

What happened to ManagedSpy?

ManagedSpy is supposed to be the .NET equivalent of Spy++, but somehow the download page is now not availeble any more. Anyone who knows why? Anyone that knows a replacement? --jeroen
0
votes
2answers
384 views

Windows API: Hide a button which is not a child window

I have a program, where I need to disable a specific button on toolbar. "Save" on the Adobe Reader control. I know it's possible to hide a control by locating its window handle. Using Spy++, I found ...
2
votes
1answer
1k views

Spy++ for Java Swing applications

Is there an equivalent for Spy++ for java swing applications? I work with a third party application that contains a huge number of screens that get invoked via a reflection based mechanism. Whenever ...
0
votes
4answers
263 views

Tool for examining the structure of a windows forms application

does anybody know a tool for examining the structure of a windows forms application? I want to get information about every control on the form like buttons, labels etc. I tried Spy++ but it tells me ...
2
votes
1answer
704 views

Automating Windows GUI Testing - FindWindowEx and Control Classes

I've inherited a C# window's application that I'm not real crazy about. I've got a looming deadline and I'm scared to death that some of my changes might be having adverse effects on existing ...
2
votes
2answers
213 views

Spy++ and windows closed when they lose focus

I would like to know if there is a way with Spy++ to get the properties of a window that is automatically closed when it loses the focus (which is what happens when I switch to Spy++). Thanks!
1
vote
1answer
353 views

Spy++ like program for viewing control values

I'd like to view and export the values of a combobox. What program can I use to allow me to get the values in a control inside another application?
0
votes
1answer
153 views

EM_GETLINE fails when Spy++ is running

There is an edit box in some dialog in my application, which is running on Windows XP. When I issue EM_GETLINE on this control, it returns its contents and it's ok, but when I start Spy++ the control ...

1 2