CB32 1.2 sources
This commit is contained in:
parent
cf25bc7627
commit
fd87f89a19
100 changed files with 14543 additions and 0 deletions
52
PropOnline.cpp
Normal file
52
PropOnline.cpp
Normal file
|
|
@ -0,0 +1,52 @@
|
|||
// 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
|
||||
Reference in a new issue