AddClientDlg.cpp
上传用户:yffx2008
上传日期:2014-10-12
资源大小:12414k
文件大小:2k
- // 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