52 lines
1.2 KiB
C++
52 lines
1.2 KiB
C++
// PropOnline.cpp : implementation file
|
|
//
|
|
|
|
#include "stdafx.h"
|
|
#include "CB32.h"
|
|
#include "PropOnline.h"
|
|
|
|
#ifdef _DEBUG
|
|
#define new DEBUG_NEW
|
|
#undef THIS_FILE
|
|
static char THIS_FILE[] = __FILE__;
|
|
#endif
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CPropOnline property page
|
|
|
|
IMPLEMENT_DYNCREATE(CPropOnline, CPropertyPage)
|
|
|
|
CPropOnline::CPropOnline() : CPropertyPage(CPropOnline::IDD)
|
|
{
|
|
//{{AFX_DATA_INIT(CPropOnline)
|
|
m_email1 = _T("");
|
|
m_email2 = _T("");
|
|
m_web1 = _T("");
|
|
m_web2 = _T("");
|
|
//}}AFX_DATA_INIT
|
|
}
|
|
|
|
CPropOnline::~CPropOnline()
|
|
{
|
|
}
|
|
|
|
void CPropOnline::DoDataExchange(CDataExchange* pDX)
|
|
{
|
|
CPropertyPage::DoDataExchange(pDX);
|
|
//{{AFX_DATA_MAP(CPropOnline)
|
|
DDX_Text(pDX, IDC_EMAIL1, m_email1);
|
|
DDX_Text(pDX, IDC_EMAIL2, m_email2);
|
|
DDX_Text(pDX, IDC_WEB1, m_web1);
|
|
DDX_Text(pDX, IDC_WEB2, m_web2);
|
|
//}}AFX_DATA_MAP
|
|
}
|
|
|
|
|
|
BEGIN_MESSAGE_MAP(CPropOnline, CPropertyPage)
|
|
//{{AFX_MSG_MAP(CPropOnline)
|
|
// NOTE: the ClassWizard will add message map macros here
|
|
//}}AFX_MSG_MAP
|
|
END_MESSAGE_MAP()
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CPropOnline message handlers
|