www.pudn.com > C_modem16.zip > PAGEM.CPP


// pagem.cpp : implementation file 
// 
 
#include "stdafx.h" 
#include "modem16.h" 
#include "pagem.h" 
 
#ifdef _DEBUG 
#undef THIS_FILE 
static char BASED_CODE THIS_FILE[] = __FILE__; 
#endif 
 
///////////////////////////////////////////////////////////////////////////// 
// PageM dialog 
 
 
PageM::PageM(CWnd* pParent /*=NULL*/) 
	: CDialog(PageM::IDD, pParent) 
{ 
	//{{AFX_DATA_INIT(PageM) 
	m_inistring = ""; 
	m_modems = ""; 
	//}}AFX_DATA_INIT 
} 
 
void PageM::DoDataExchange(CDataExchange* pDX) 
{ 
	CDialog::DoDataExchange(pDX); 
	//{{AFX_DATA_MAP(PageM) 
	DDX_Control(pDX, IDC_MODEMS, m_modems1); 
	DDX_Text(pDX, IDC_INISTRING, m_inistring); 
	DDX_LBString(pDX, IDC_MODEMS, m_modems); 
	//}}AFX_DATA_MAP 
} 
 
BEGIN_MESSAGE_MAP(PageM, CDialog) 
	//{{AFX_MSG_MAP(PageM) 
		// NOTE: the ClassWizard will add message map macros here 
	//}}AFX_MSG_MAP 
END_MESSAGE_MAP() 
 
 
///////////////////////////////////////////////////////////////////////////// 
// PageM message handlers