www.pudn.com > student_system.rar > MyLogin.cpp


// MyLogin.cpp : implementation file 
// 
 
#include "stdafx.h" 
#include "student.h" 
#include "MyLogin.h" 
 
#ifdef _DEBUG 
#define new DEBUG_NEW 
#undef THIS_FILE 
static char THIS_FILE[] = __FILE__; 
#endif 
 
///////////////////////////////////////////////////////////////////////////// 
// CMyLogin dialog 
 
 
CMyLogin::CMyLogin(CWnd* pParent /*=NULL*/) 
	: CDialog(CMyLogin::IDD, pParent) 
{ 
	//{{AFX_DATA_INIT(CMyLogin) 
	m_bm = _T(""); 
	m_name = _T(""); 
	m_pass = _T(""); 
	//}}AFX_DATA_INIT 
} 
 
 
void CMyLogin::DoDataExchange(CDataExchange* pDX) 
{ 
	CDialog::DoDataExchange(pDX); 
	//{{AFX_DATA_MAP(CMyLogin) 
	DDX_CBString(pDX, IDC_COMBO_BM, m_bm); 
	DDX_Text(pDX, IDC_EDIT_NAME, m_name); 
	DDX_Text(pDX, IDC_EDIT_PASS, m_pass); 
	//}}AFX_DATA_MAP 
} 
 
 
BEGIN_MESSAGE_MAP(CMyLogin, CDialog) 
	//{{AFX_MSG_MAP(CMyLogin) 
		// NOTE: the ClassWizard will add message map macros here 
	//}}AFX_MSG_MAP 
END_MESSAGE_MAP() 
 
///////////////////////////////////////////////////////////////////////////// 
// CMyLogin message handlers