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

44 lines
924 B
C++

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