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

📄 addclientdlg.cpp

📁 用VC写的监控中心后台程序。 代码全
💻 CPP
字号:
// AddClientDlg.cpp : implementation file
//

#include "stdafx.h"
#include "GpsSC.h"
#include "AddClientDlg.h"

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

/////////////////////////////////////////////////////////////////////////////
// CAddClientDlg dialog


CAddClientDlg::CAddClientDlg(CWnd* pParent /*=NULL*/)
	: CDialog(CAddClientDlg::IDD, pParent)
{
	//{{AFX_DATA_INIT(CAddClientDlg)
	m_clientname = _T("");
	m_clientage = _T("");
	m_clientcompany = _T("");
	m_clientduty = _T("");
	m_clientidnumber = _T("");
	m_clientdrivelicense = _T("");
	m_clienttelephonenumber = _T("");
	m_clientpassword = _T("");
	m_vehicleid = _T("");
	m_vehicletype = _T("");
	m_vehiclecolor = _T("");
	m_engineid = _T("");
	m_undercarriage = _T("");
	m_vehicletelnumber = _T("");
	//}}AFX_DATA_INIT
}


void CAddClientDlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CAddClientDlg)
	DDX_Text(pDX, IDC_EDIT1, m_clientname);
	DDX_Text(pDX, IDC_EDIT2, m_clientage);
	DDX_Text(pDX, IDC_EDIT3, m_clientcompany);
	DDX_Text(pDX, IDC_EDIT4, m_clientduty);
	DDX_Text(pDX, IDC_EDIT5, m_clientidnumber);
	DDX_Text(pDX, IDC_EDIT6, m_clientdrivelicense);
	DDX_Text(pDX, IDC_EDIT7, m_clienttelephonenumber);
	DDX_Text(pDX, IDC_EDIT8, m_clientpassword);
	DDX_Text(pDX, IDC_EDIT9, m_vehicleid);
	DDX_Text(pDX, IDC_EDIT10, m_vehicletype);
	DDX_Text(pDX, IDC_EDIT11, m_vehiclecolor);
	DDX_Text(pDX, IDC_EDIT12, m_engineid);
	DDX_Text(pDX, IDC_EDIT13, m_undercarriage);
	DDX_Text(pDX, IDC_EDIT14, m_vehicletelnumber);
	//}}AFX_DATA_MAP
}


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

/////////////////////////////////////////////////////////////////////////////
// CAddClientDlg message handlers

⌨️ 快捷键说明

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