CB32 1.2 sources
This commit is contained in:
parent
cf25bc7627
commit
fd87f89a19
100 changed files with 14543 additions and 0 deletions
66
PropPhone.cpp
Normal file
66
PropPhone.cpp
Normal file
|
|
@ -0,0 +1,66 @@
|
|||
// PropPhone.cpp : implementation file
|
||||
//
|
||||
|
||||
#include "stdafx.h"
|
||||
#include "CB32.h"
|
||||
#include "PropPhone.h"
|
||||
|
||||
#ifdef _DEBUG
|
||||
#define new DEBUG_NEW
|
||||
#undef THIS_FILE
|
||||
static char THIS_FILE[] = __FILE__;
|
||||
#endif
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// CPropPhone property page
|
||||
|
||||
IMPLEMENT_DYNCREATE(CPropPhone, CPropertyPage)
|
||||
|
||||
CPropPhone::CPropPhone() : CPropertyPage(CPropPhone::IDD)
|
||||
{
|
||||
//{{AFX_DATA_INIT(CPropPhone)
|
||||
m_hphone = _T("");
|
||||
m_hphonex = _T("");
|
||||
m_wphone = _T("");
|
||||
m_wphonex = _T("");
|
||||
m_cellular = _T("");
|
||||
m_cellularx = _T("");
|
||||
m_pager = _T("");
|
||||
m_pagerc = _T("");
|
||||
m_pagerx = _T("");
|
||||
m_fax = _T("");
|
||||
m_faxx = _T("");
|
||||
//}}AFX_DATA_INIT
|
||||
}
|
||||
|
||||
CPropPhone::~CPropPhone()
|
||||
{
|
||||
}
|
||||
|
||||
void CPropPhone::DoDataExchange(CDataExchange* pDX)
|
||||
{
|
||||
CPropertyPage::DoDataExchange(pDX);
|
||||
//{{AFX_DATA_MAP(CPropPhone)
|
||||
DDX_Text(pDX, IDC_CELLULAR, m_cellular);
|
||||
DDX_Text(pDX, IDC_CELLULARX, m_cellularx);
|
||||
DDX_Text(pDX, IDC_FAX, m_fax);
|
||||
DDX_Text(pDX, IDC_FAXX, m_faxx);
|
||||
DDX_Text(pDX, IDC_HPHONE, m_hphone);
|
||||
DDX_Text(pDX, IDC_HPHONEX, m_hphonex);
|
||||
DDX_Text(pDX, IDC_PAGER, m_pager);
|
||||
DDX_Text(pDX, IDC_PAGERC, m_pagerc);
|
||||
DDX_Text(pDX, IDC_PAGERX, m_pagerx);
|
||||
DDX_Text(pDX, IDC_WPHONE, m_wphone);
|
||||
DDX_Text(pDX, IDC_WPHONEX, m_wphonex);
|
||||
//}}AFX_DATA_MAP
|
||||
}
|
||||
|
||||
|
||||
BEGIN_MESSAGE_MAP(CPropPhone, CPropertyPage)
|
||||
//{{AFX_MSG_MAP(CPropPhone)
|
||||
// NOTE: the ClassWizard will add message map macros here
|
||||
//}}AFX_MSG_MAP
|
||||
END_MESSAGE_MAP()
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// CPropPhone message handlers
|
||||
Reference in a new issue