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

📄 telephonequerydlg.cpp

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

#include "stdafx.h"
#include "fee.h"
#include "telephoneQueryDlg.h"

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

/////////////////////////////////////////////////////////////////////////////
// CtelephoneQueryDlg dialog


CtelephoneQueryDlg::CtelephoneQueryDlg(CWnd* pParent /*=NULL*/)
	: CDialog(CtelephoneQueryDlg::IDD, pParent)
{
	//{{AFX_DATA_INIT(CtelephoneQueryDlg)
	m_strtelequeryaddress = _T("");
	m_strtelequerybank = _T("");
	m_strtelequerybankaccount = _T("");
	m_strtelequerykind = _T("");
	m_strtelequeryname = _T("");
	m_strtelequerynum = _T("");
	m_strtelequerystatus = _T("");
	//}}AFX_DATA_INIT
}


void CtelephoneQueryDlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CtelephoneQueryDlg)
	DDX_Text(pDX, IDC_EDIT_TELEQUERY_ADR, m_strtelequeryaddress);
	DDX_Text(pDX, IDC_EDIT_TELEQUERY_BANK, m_strtelequerybank);
	DDX_Text(pDX, IDC_EDIT_TELEQUERY_BANKACCOUNT, m_strtelequerybankaccount);
	DDX_Text(pDX, IDC_EDIT_TELEQUERY_KIND, m_strtelequerykind);
	DDX_Text(pDX, IDC_EDIT_TELEQUERY_NAME, m_strtelequeryname);
	DDX_Text(pDX, IDC_EDIT_TELEQUERY_NUM, m_strtelequerynum);
	DDX_Text(pDX, IDC_EDIT_TELEQUERY_STATUS, m_strtelequerystatus);
	//}}AFX_DATA_MAP
}


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

/////////////////////////////////////////////////////////////////////////////
// CtelephoneQueryDlg message handlers

⌨️ 快捷键说明

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