Click here to Skip to main content
Licence 
First Posted 12 Jan 2002
Views 175,768
Bookmarked 84 times

MiniSpy

By | 27 Jul 2002 | Article
A dynamic window attribute viewer to replace Spy++

Sample Image - MiniSpy.jpg

Introduction

(Rev 2.0)

I often use Spy++ to track window messages but have rarely used it to look at the attributes of a window.

When i have used it, I've found using the finder tool to be a really awkward device because it presents a static interface to what i find to be a much more dynamic activity.

I decided therefore to see if I could devise an alternative interface which would allow me to look at a window's attributes with the minimum of fuss and bother.

The result is MiniSpy.

There's nothing very special about it, but it does provide the following features:

  • All attributes are visible in one pane
  • Dynamically updates as you drag it around
  • Displays control specific styles for all of the standard windows and common controls separately to the standard window styles.
  • Provides a filter drop-down so that if you have registered you own window class and it is based on a standard control class you can manually select the base window class to see the control styles
  • 'Refresh' button for refreshing the current window's attributes
  • Provides tooltips to view long rows

History

New Features (2.0)

  • 'Lock Updates' button/shortcut to prevent updating of the picked window as you move MiniSpy.
  • Buttons/shortcuts to navigate to parent window, first child windows, next/previous windows (note: these buttons will automatically lock updates to prevent the new window being immediately overridden).
  • Vertical toolbar so that all buttons are visible.
  • Manual implementation of RealWindowFromPoint() for win95 (see bug fixes (1.2) below).
  • Addition of control styles for tooltips_class32.

Bug Fixes (2.0)

  • Missing Menu (#32768), Desktop (#32769), Icon Title (#32772), tooltips_class32, Task Switcher (#32771) classnames added to filter combobox.

New Features (1.2)

  • Show the 'hittest' result returned by the window in response to a WM_NCHITTEST message

Bug Fixes (1.2)

  • Correctly pick windows contained by a group box. Thanks to Philippe Lhoste (PhiLho@GMX.net)

    Previously, MiniSpy used the method ::WindowFromPoint() to pick the window. However, as Philippe pointed out this does not always work with controls within group boxes, specifically when the controls are behind the group box in the z-order.

    To solve this I have extended the window picking to also use ::RealChildWindowFromPoint() once the initial pick is done. The documentation for this function effectively states that it ignores windows which return HTTRANSPARENT to a WM_NCHITTEST message, which group boxes do.

    This solves the problem except for nested group boxes which are ignored by ::RealChildWindowFromPoint because they too return HTTRANSPARENT.

    The docs also indicated that ::RealChildWindowFromPoint() is not supported on windows 95 which is why I have linked to it dynamically.

New Features (1.1)

  • Can use any one of its corners to pick the windows
  • Shows window properties (via EnumPropsEx)
  • Includes richedit ES_ styles
  • Includes richedit ENM_ styles
  • Includes common control CCS_ styles for toolbars and status bars
  • Provides a 'Restore Size' button to return to the startup size

Bug Fixes (1.11)

  • Crash under XP when enumerating properties using EnumPropsEx(). Thanks to limax (limax@hot.ee).

Some Comments on the Source Code

  • All the class, window, windowEx and control styles that are used are located in styles.h. If I've missed any, feel free to add them to your version and mail them to me for addition
  • I decided to make MiniSpy 'always on top' as i find it most useful in that mode, but when i turned on tooltips in the list control these appeared behind the MiniSpy Window! Since the tooltips are a very useful feature for the style rows, I came up with an interesting workaround: I handle WM_ACTIVATEAPP and make MiniSpy 'topmost' when its not the active window and 'not topmost' when it is active.
  • To retrieve the window caption for the window and its parent I've used WM_GETTEXT instead of GetWindowText. This is simply because, for one reason or another, GetWindowText did not seem to work for some windows in this situation.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

.dan.g.

Software Developer
Maptek
Australia Australia

Member

Follow on Twitter Follow on Twitter
.dan.g. is a former chartered structural engineer from the uk. He's been programming since university and has been developing commercial windows software in Australia since 1998.
 
For all his latest freeware visit AbstractSpoon.
Follow him on Facebook, or on Twitter.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralAnother suggestion PinmemberDjohan Kho23:03 2 Jun '08  
QuestionASP.NET Pinmemberpatiech22:33 12 Mar '06  
GeneralMore complex spy here PinsussAnonymous17:06 26 Aug '05  
GeneralGood article Pinmember^^o000o^^6:24 22 Nov '04  
GeneralGreat app Pinmemberkorsuas4:00 8 Apr '04  
GeneralRe: Great app Pinmember.dan.g.21:40 9 Apr '04  
QuestionAm I fussy? PinmemberMykel12:49 16 Jan '04  
GeneralYAY! PinmemberDaFrawg6:57 11 Jan '04  
GeneralRe: YAY! Pinmember.dan.g.18:22 13 Jan '04  
GeneralRequest PinmemberDarren Schroeder15:37 29 Jul '02  
GeneralRe: Request PinmemberDanG16:53 30 Jul '02  
GeneralChild windows PinmemberPhilippe Lhoste6:06 17 Jul '02  
GeneralRe: Child windows PinmemberDanG18:54 18 Jul '02  
GeneralRe: Child windows PinmemberPhilippe Lhoste2:43 22 Jul '02  
GeneralRe: Child windows PinmemberDanG15:34 22 Jul '02  
GeneralRe: Child windows PinmemberPhilippe Lhoste22:15 22 Jul '02  
General:-) Thanks PinsubeditorBrian Delahunty5:57 19 Jun '02  
GeneralContext sensitive menu Pinmembered welch4:06 16 Apr '02  
GeneralGreat ! one question... PinmemberShaun baradara0:25 30 Mar '02  
GeneralRe: Great ! one question... PinmemberDanG23:57 27 Jun '02  
GeneralVery nice! PinmemberLuis Alonso Ramos21:31 2 Feb '02  
GeneralRunning the EXE crashes under WXP PinmemberUwe Keim10:24 29 Jan '02  
GeneralRe: Running the EXE crashes under WXP PinmemberDanG12:13 29 Jan '02  
GeneralBug in PropEnumProcEx Pinmemberlimax1:32 23 Jan '02  
GeneralRe: Bug in PropEnumProcEx PinmemberDanG11:49 23 Jan '02  
thanks very much for this.
 
i have changed the code, verified it under XP and submitted an update package.
 
i guess it will take a couple of days to appear here.

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120528.1 | Last Updated 28 Jul 2002
Article Copyright 2002 by .dan.g.
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid