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/PropNote.cpp
2024-03-20 09:28:18 -05:00

46 lines
1,009 B
C++

// PropNote.cpp : implementation file
//
#include "stdafx.h"
#include "CB32.h"
#include "PropNote.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CPropNote property page
IMPLEMENT_DYNCREATE(CPropNote, CPropertyPage)
CPropNote::CPropNote() : CPropertyPage(CPropNote::IDD)
{
//{{AFX_DATA_INIT(CPropNote)
m_notes = _T("");
//}}AFX_DATA_INIT
}
CPropNote::~CPropNote()
{
}
void CPropNote::DoDataExchange(CDataExchange* pDX)
{
CPropertyPage::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CPropNote)
DDX_Text(pDX, IDC_NOTES, m_notes);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CPropNote, CPropertyPage)
//{{AFX_MSG_MAP(CPropNote)
// NOTE: the ClassWizard will add message map macros here
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CPropNote message handlers