Click here to Skip to main content
15,891,785 members
Articles / Desktop Programming / MFC

Creating embedded dialogs in MFC

Rate me:
Please Sign up or sign in to vote.
4.70/5 (36 votes)
29 Jul 20036 min read 252.2K   6.4K   83  
Creating embedded dialogs in MFC using DS_CONTROL
// EmbeddedDialog.h : main header file for the EMBEDDEDDIALOG application
//
#ifndef __EMBEDDEDDIALOG_H
#define __EMBEDDEDDIALOG_H

/////////////////////////////////////////////////////////////////////////////
// CEmbeddedDialogApp:
// See EmbeddedDialog.cpp for the implementation of this class
//

class CEmbeddedDialogApp : public CWinApp
{
public:
	CEmbeddedDialogApp();

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CEmbeddedDialogApp)
	public:
	virtual BOOL InitInstance();
	//}}AFX_VIRTUAL

// Implementation

	//{{AFX_MSG(CEmbeddedDialogApp)
		// NOTE - the ClassWizard will add and remove member functions here.
		//    DO NOT EDIT what you see in these blocks of generated code !
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};


/////////////////////////////////////////////////////////////////////////////

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

#endif //__EMBEDDEDDIALOG_H


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
Web Developer
United Kingdom United Kingdom
I make computers talk to other computers - well thats that I tell everyone I do. What I really do is connectivity and syncronization software for Windows Ce, PalmOS, Symbian on client devices and MFC/ATL/.NET on the Windows Servers.

I am also an expert with Microsoft Exchange and Databases and pretty good with Lotus Notes as well.

Comments and Discussions