// 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