www.pudn.com > 6manager_server.rar > HelpDlg.cpp


// HelpDlg.cpp : implementation file 
// 
 
#include "stdafx.h" 
#include "manager_client.h" 
#include "HelpDlg.h" 
 
#ifdef _DEBUG 
#define new DEBUG_NEW 
#undef THIS_FILE 
static char THIS_FILE[] = __FILE__; 
#endif 
 
///////////////////////////////////////////////////////////////////////////// 
// CHelpDlg 
 
IMPLEMENT_DYNAMIC(CHelpDlg, CPropertySheet) 
 
CHelpDlg::CHelpDlg(UINT nIDCaption, CWnd* pParentWnd, UINT iSelectPage) 
	:CPropertySheet(nIDCaption, pParentWnd, iSelectPage) 
{ 
	AddPage(&helpuse); 
	AddPage(&getrequest); 
	AddPage(&getnest); 
	AddPage(&getbulk); 
	AddPage(&getall); 
	AddPage(&xgcl); 
 
}	 
 
CHelpDlg::CHelpDlg(LPCTSTR pszCaption, CWnd* pParentWnd, UINT iSelectPage) 
	:CPropertySheet(pszCaption, pParentWnd, iSelectPage) 
{ 
	AddPage(&helpuse); 
	AddPage(&getrequest); 
	AddPage(&getnest); 
	AddPage(&getbulk); 
	AddPage(&getall); 
	AddPage(&xgcl); 
} 
 
CHelpDlg::~CHelpDlg() 
{ 
} 
 
 
BEGIN_MESSAGE_MAP(CHelpDlg, CPropertySheet) 
	//{{AFX_MSG_MAP(CHelpDlg) 
		// NOTE - the ClassWizard will add and remove mapping macros here. 
	//}}AFX_MSG_MAP 
END_MESSAGE_MAP() 
 
///////////////////////////////////////////////////////////////////////////// 
// CHelpDlg message handlers