This repository has been archived on 2024-03-20. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
ContactBook/PropOnline.cpp
2024-03-20 09:28:18 -05:00

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