⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 reportcdrquery.cpp

📁 VC6.0环境下编写的一个交换机计费程序。
💻 CPP
字号:
// reportcdrquery.cpp : implementation file
//

#include "stdafx.h"
#include "fee.h"
#include "reportcdrquery.h"

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

/////////////////////////////////////////////////////////////////////////////
// Creportcdrquery dialog


Creportcdrquery::Creportcdrquery(CWnd* pParent /*=NULL*/)
	: CDialog(Creportcdrquery::IDD, pParent)
{
	//{{AFX_DATA_INIT(Creportcdrquery)
	m_binterior = FALSE;
	m_binternational = FALSE;
	m_blocal = FALSE;
	m_bspecial = FALSE;
	m_btoll = FALSE;
	m_strendminute = _T("");
	m_strstarthour = _T("");
	m_strstartminute = _T("");
	m_strstartsecond = _T("");
	m_strcallingnum = _T("");
	m_strendhour = _T("");
	m_strendsecond = _T("");
	m_strLocalCode = _T("");
	//}}AFX_DATA_INIT
}


void Creportcdrquery::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(Creportcdrquery)
	DDX_Check(pDX, IDC_CHECK_INTERIOR, m_binterior);
	DDX_Check(pDX, IDC_CHECK_INTERNATIONAL, m_binternational);
	DDX_Check(pDX, IDC_CHECK_LOCAL, m_blocal);
	DDX_Check(pDX, IDC_CHECK_SPECIAL, m_bspecial);
	DDX_Check(pDX, IDC_CHECK_TOLL, m_btoll);
	DDX_CBString(pDX, IDC_COMBO_ENDMINUTE, m_strendminute);
	DDX_CBString(pDX, IDC_COMBO_STARTHOUR, m_strstarthour);
	DDX_CBString(pDX, IDC_COMBO_STARTMINUTE, m_strstartminute);
	DDX_CBString(pDX, IDC_COMBO_STARTSECOND, m_strstartsecond);
	DDX_Text(pDX, IDC_EDIT_CALLINGNUM, m_strcallingnum);
	DDX_CBString(pDX, IDC_COMBO_ENDHOUR, m_strendhour);
	DDX_CBString(pDX, IDC_COMBO_ENDSECOND, m_strendsecond);
	DDX_Text(pDX, IDC_EDIT_LocalCode, m_strLocalCode);
	//}}AFX_DATA_MAP
}


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

/////////////////////////////////////////////////////////////////////////////
// Creportcdrquery message handlers

⌨️ 快捷键说明

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