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