home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2003 June
/
PCWorld_2003-06_cd.bin
/
KOMUNIK
/
MIRRORIT
/
SRC
/
SESSIONPROPERTIESPASSWORDPA.CPP
< prev
next >
Wrap
C/C++ Source or Header
|
1998-01-05
|
1KB
|
49 lines
// SessionPropertiesPasswordPage.cpp : implementation file
//
#include "stdafx.h"
#include "MirrorIt.h"
#include "SessionPropertiesPasswordPage.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CSessionPropertiesPasswordPage property page
IMPLEMENT_DYNCREATE(CSessionPropertiesPasswordPage, CPropertyPage)
CSessionPropertiesPasswordPage::CSessionPropertiesPasswordPage() : CPropertyPage(CSessionPropertiesPasswordPage::IDD)
{
//{{AFX_DATA_INIT(CSessionPropertiesPasswordPage)
m_Password = _T("");
m_UserName = _T("");
//}}AFX_DATA_INIT
}
CSessionPropertiesPasswordPage::~CSessionPropertiesPasswordPage()
{
}
void CSessionPropertiesPasswordPage::DoDataExchange(CDataExchange* pDX)
{
CPropertyPage::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CSessionPropertiesPasswordPage)
DDX_Text(pDX, IDC_PASSWORD, m_Password);
DDX_Text(pDX, IDC_USERNAME, m_UserName);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CSessionPropertiesPasswordPage, CPropertyPage)
//{{AFX_MSG_MAP(CSessionPropertiesPasswordPage)
// NOTE: the ClassWizard will add message map macros here
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CSessionPropertiesPasswordPage message handlers