Click here to Skip to main content
15,880,651 members
Articles / Desktop Programming / MFC

ShowWindowTree Utility

Rate me:
Please Sign up or sign in to vote.
2.77/5 (10 votes)
19 Jan 20021 min read 57.4K   804   21  
Display the hierarchy of windows (hidden or not) on your system along with a few options to modifiy them
// Sizer.h : header file
//

/////////////////////////////////////////////////////////////////////////////
// Sizer dialog

class Sizer : public CDialog
{
// Construction
public:
	Sizer(CWnd* pParent = NULL);   // standard constructor

// Dialog Data
	//{{AFX_DATA(Sizer)
	enum { IDD = IDD_SIZEDLG };
	CRect m_Rect;
	//}}AFX_DATA


// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(Sizer)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:

	// Generated message map functions
	//{{AFX_MSG(Sizer)
		// NOTE: the ClassWizard will add member functions here
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

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


Written By
President
United States United States
Computer geek since the beginning of time, well, at least since 1981. Started with the Commodore VIC-20 with 3.5K RAM. Past two decades spent with C/C++, MFC and now totally consumed with .NET and C#.

Business owner here in beautiful southern Oregon with mountains, clean air and pure water. Great outdoors to enjoy when I can get away from the computers.

Web sites of interest:

HintsAndTips.com
TheAwakening.com
My Blog: www.ReflectedThought.com
www.SilverlightCity.com
www.TheSaintsInLight.com
www.TheSilverlightDirectory.com
www.TheWPFDirectory.com

Comments and Discussions