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

44
GetNew.cpp Normal file
View file

@ -0,0 +1,44 @@
// GetNew.cpp : implementation file
//
#include "stdafx.h"
#include "CB32.h"
#include "GetNew.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CGetNew dialog
CGetNew::CGetNew(CWnd* pParent /*=NULL*/)
: CDialog(CGetNew::IDD, pParent)
{
//{{AFX_DATA_INIT(CGetNew)
m_addinfo = FALSE;
m_newinfo = _T("");
//}}AFX_DATA_INIT
}
void CGetNew::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CGetNew)
DDX_Check(pDX, IDC_ADDINFO, m_addinfo);
DDX_Text(pDX, IDC_NEWINFO, m_newinfo);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CGetNew, CDialog)
//{{AFX_MSG_MAP(CGetNew)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CGetNew message handlers