reportdialog.cpp

来自「一个可以控制单片机根据通话时间和所拨地区进行计费的软件!」· C++ 代码 · 共 60 行

CPP
60
字号
// ReportDialog.cpp : implementation file
//

#include "stdafx.h"
#include "Commucation.h"
#include "ReportDialog.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CReportDialog dialog


CReportDialog::CReportDialog(CWnd* pParent /*=NULL*/)
	: CDialog(CReportDialog::IDD, pParent)
{
	//{{AFX_DATA_INIT(CReportDialog)
	m_Report1 = _T("");
	m_Report3 = _T("");
	m_Report4 = _T("");
	m_Report5 = _T("");
	m_Report6 = _T("");
	m_Report7 = _T("");
	m_Report8 = _T("");
	m_Report9 = _T("");
	m_Report10 = _T("");
	//}}AFX_DATA_INIT
}


void CReportDialog::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CReportDialog)
	DDX_Text(pDX, IDC_STATICA, m_Report1);
	DDX_Text(pDX, IDC_STATICC, m_Report3);
	DDX_Text(pDX, IDC_STATICD, m_Report4);
	DDX_Text(pDX, IDC_STATICE, m_Report5);
	DDX_Text(pDX, IDC_STATICF, m_Report6);
	DDX_Text(pDX, IDC_STATICG, m_Report7);
	DDX_Text(pDX, IDC_STATICH, m_Report8);
	DDX_Text(pDX, IDC_STATICI, m_Report9);
	DDX_Text(pDX, IDC_STATICJ, m_Report10);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CReportDialog, CDialog)
	//{{AFX_MSG_MAP(CReportDialog)
		// NOTE: the ClassWizard will add message map macros here
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CReportDialog message handlers

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?