telephonequerydlg.cpp

来自「VC6.0环境下编写的一个交换机计费程序。」· C++ 代码 · 共 56 行

CPP
56
字号
// 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 + =
减小字号Ctrl + -
显示快捷键?