CB32 1.2 sources

This commit is contained in:
troyengel 2014-11-26 13:59:13 -06:00
parent cf25bc7627
commit fd87f89a19
100 changed files with 14543 additions and 0 deletions

46
PropNote.cpp Normal file
View 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