Click here to Skip to main content
15,896,453 members
Articles / Desktop Programming / MFC

Easy Installer

Rate me:
Please Sign up or sign in to vote.
4.81/5 (57 votes)
14 Sep 2006CPOL11 min read 278.6K   3.7K   155  
The Easy Installer program
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#include "NewWizPage.h"
#include "afxwin.h"
#include "XHyperLink.h"
#include "resource.h"


/////////////////////////////////////////////////////////////////////////////
// CIntroPage dialog

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

// Dialog Data
	//{{AFX_DATA(CIntroPage)
	enum { IDD = IDW_INTRO };
	CStatic	m_CaptionCtrl;
	//}}AFX_DATA
	
	CFont m_Font;

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

// Implementation
protected:
	void	OnSetActive();
	BOOL	OnKillActive();
	LRESULT	OnWizardNext();

	// Generated message map functions
	//{{AFX_MSG(CIntroPage)
	virtual BOOL OnInitDialog();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
public:
	CStatic		m_Caption1Ctrl;
	CXHyperLink	m_hlSite;
};

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

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
Israel Israel
lichen farmer, semi-lingual, never saw a Sylvester Stallone movie

Comments and Discussions