Click here to Skip to main content
15,895,746 members
Articles / Programming Languages / C++

Multi-dialog management through client area sharing

,
Rate me:
Please Sign up or sign in to vote.
4.95/5 (30 votes)
30 Sep 2005CPOL10 min read 62.6K   1.7K   56  
An article on multi-dialog management through client area sharing.
#if !defined(AFX_CONTAINERDLG_H__69783643_F61D_4AA2_A24A_8D21B154798F__INCLUDED_)
#define AFX_CONTAINERDLG_H__69783643_F61D_4AA2_A24A_8D21B154798F__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// ContainerDlg.h : header file
//
// Author:  John Keirsbilck
//          spoodles@rochester.rr.com
//
// This software is released into the public domain.
// You are free to use it in any way you like.
//
// This software is provided "as is" with no expressed
// or implied warranty.  I accept no liability for any
// damage or loss of business that this software may cause.
//

/////////////////////////////////////////////////////////////////////////////
// CContainerDlg dialog

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

// Dialog Data
	//{{AFX_DATA(CContainerDlg)
	enum { IDD = IDD_DIALOG_CONTAINER };
		// NOTE: the ClassWizard will add data members here
	//}}AFX_DATA


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

// Implementation
protected:

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

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_CONTAINERDLG_H__69783643_F61D_4AA2_A24A_8D21B154798F__INCLUDED_)

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, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Europe Europe
More than 30 years of software development experience.
(also playing the SCRUM Master role depending on the project)

Written By
Chief Technology Officer
United States United States
At this software thing longer than I care to mention. These days primarily a VC++ and SQL Server guy.

Comments and Discussions