www.pudn.com > NoteBookVC++.rar > HELPDIALOG.cpp


// HELPDIALOG.cpp : implementation file 
// 
 
#include "stdafx.h" 
#include "¼Çʱ¾.h" 
#include "HELPDIALOG.h" 
 
#ifdef _DEBUG 
#define new DEBUG_NEW 
#undef THIS_FILE 
static char THIS_FILE[] = __FILE__; 
#endif 
 
///////////////////////////////////////////////////////////////////////////// 
// HELPDIALOG dialog 
 
 
HELPDIALOG::HELPDIALOG(CWnd* pParent /*=NULL*/) 
	: CDialog(HELPDIALOG::IDD, pParent) 
{ 
	//{{AFX_DATA_INIT(HELPDIALOG) 
		// NOTE: the ClassWizard will add member initialization here 
	//}}AFX_DATA_INIT 
} 
 
 
void HELPDIALOG::DoDataExchange(CDataExchange* pDX) 
{ 
	CDialog::DoDataExchange(pDX); 
	//{{AFX_DATA_MAP(HELPDIALOG) 
		// NOTE: the ClassWizard will add DDX and DDV calls here 
	//}}AFX_DATA_MAP 
} 
 
 
BEGIN_MESSAGE_MAP(HELPDIALOG, CDialog) 
	//{{AFX_MSG_MAP(HELPDIALOG) 
	//}}AFX_MSG_MAP 
END_MESSAGE_MAP() 
 
///////////////////////////////////////////////////////////////////////////// 
// HELPDIALOG message handlers 
 
BOOL HELPDIALOG::OnInitDialog()  
{ 
	CDialog::OnInitDialog(); 
	 
	// TODO: Add extra initialization here 
	HELPDIALOG::HelpEdit.SubclassDlgItem(IDC_EDIT1,this); 
 
	return TRUE;  // return TRUE unless you set the focus to a control 
	              // EXCEPTION: OCX Property Pages should return FALSE 
}