// PasswordDlg.cpp : implementation file // #include "stdafx.h" #include "dclient.h" #include "PasswordDlg.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif ///////////////////////////////////////////////////////////////////////////// // CPasswordDlg dialog CPasswordDlg::CPasswordDlg(CWnd* pParent /*=NULL*/) : CDialog(CPasswordDlg::IDD, pParent) { //{{AFX_DATA_INIT(CPasswordDlg) m_strPassword = _T(""); //}}AFX_DATA_INIT } void CPasswordDlg::DoDataExchange(CDataExchange* pDX) { CDialog::DoDataExchange(pDX); //{{AFX_DATA_MAP(CPasswordDlg) DDX_Text(pDX, IDC_PASSWORD, m_strPassword); //}}AFX_DATA_MAP } BEGIN_MESSAGE_MAP(CPasswordDlg, CDialog) //{{AFX_MSG_MAP(CPasswordDlg) // NOTE: the ClassWizard will add message map macros here //}}AFX_MSG_MAP END_MESSAGE_MAP() ///////////////////////////////////////////////////////////////////////////// // CPasswordDlg message handlers