AddClientDlg.cpp
上传用户:yffx2008
上传日期:2014-10-12
资源大小:12414k
文件大小:2k
源码类别:

交通/航空行业

开发平台:

Visual C++

  1. // AddClientDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "GpsSC.h"
  5. #include "AddClientDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CAddClientDlg dialog
  13. CAddClientDlg::CAddClientDlg(CWnd* pParent /*=NULL*/)
  14. : CDialog(CAddClientDlg::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(CAddClientDlg)
  17. m_clientname = _T("");
  18. m_clientage = _T("");
  19. m_clientcompany = _T("");
  20. m_clientduty = _T("");
  21. m_clientidnumber = _T("");
  22. m_clientdrivelicense = _T("");
  23. m_clienttelephonenumber = _T("");
  24. m_clientpassword = _T("");
  25. m_vehicleid = _T("");
  26. m_vehicletype = _T("");
  27. m_vehiclecolor = _T("");
  28. m_engineid = _T("");
  29. m_undercarriage = _T("");
  30. m_vehicletelnumber = _T("");
  31. //}}AFX_DATA_INIT
  32. }
  33. void CAddClientDlg::DoDataExchange(CDataExchange* pDX)
  34. {
  35. CDialog::DoDataExchange(pDX);
  36. //{{AFX_DATA_MAP(CAddClientDlg)
  37. DDX_Text(pDX, IDC_EDIT1, m_clientname);
  38. DDX_Text(pDX, IDC_EDIT2, m_clientage);
  39. DDX_Text(pDX, IDC_EDIT3, m_clientcompany);
  40. DDX_Text(pDX, IDC_EDIT4, m_clientduty);
  41. DDX_Text(pDX, IDC_EDIT5, m_clientidnumber);
  42. DDX_Text(pDX, IDC_EDIT6, m_clientdrivelicense);
  43. DDX_Text(pDX, IDC_EDIT7, m_clienttelephonenumber);
  44. DDX_Text(pDX, IDC_EDIT8, m_clientpassword);
  45. DDX_Text(pDX, IDC_EDIT9, m_vehicleid);
  46. DDX_Text(pDX, IDC_EDIT10, m_vehicletype);
  47. DDX_Text(pDX, IDC_EDIT11, m_vehiclecolor);
  48. DDX_Text(pDX, IDC_EDIT12, m_engineid);
  49. DDX_Text(pDX, IDC_EDIT13, m_undercarriage);
  50. DDX_Text(pDX, IDC_EDIT14, m_vehicletelnumber);
  51. //}}AFX_DATA_MAP
  52. }
  53. BEGIN_MESSAGE_MAP(CAddClientDlg, CDialog)
  54. //{{AFX_MSG_MAP(CAddClientDlg)
  55. // NOTE: the ClassWizard will add message map macros here
  56. //}}AFX_MSG_MAP
  57. END_MESSAGE_MAP()
  58. /////////////////////////////////////////////////////////////////////////////
  59. // CAddClientDlg message handlers