Click here to Skip to main content
15,893,790 members
Articles / Desktop Programming / MFC

Conquering Wizard97

Rate me:
Please Sign up or sign in to vote.
4.92/5 (35 votes)
9 Oct 2002CPOL7 min read 213.1K   3.3K   66  
This article describes the problems one can meet during using Wizard 97 with MFC and the way to resolve them
// FirstPage.cpp : implementation file
//

#include "stdafx.h"
#include "Wiz97_3.h"
#include "FirstPage.h"


// CFirstPage dialog

IMPLEMENT_DYNAMIC(CFirstPage, CPropertyPage)
CFirstPage::CFirstPage()
	: CPropertyPage(CFirstPage::IDD)
{
	m_psp.dwFlags |= PSP_DEFAULT|PSP_HIDEHEADER;
}

CFirstPage::~CFirstPage()
{
}

void CFirstPage::DoDataExchange(CDataExchange* pDX)
{
	CPropertyPage::DoDataExchange(pDX);
}


BEGIN_MESSAGE_MAP(CFirstPage, CPropertyPage)
END_MESSAGE_MAP()


// CFirstPage message handlers

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)
Russian Federation Russian Federation
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions