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

交通/航空行业

开发平台:

Visual C++

  1. // EditclientinfoDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "GpsSC.h"
  5. #include "EditclientinfoDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CEditclientinfoDlg dialog
  13. CEditclientinfoDlg::CEditclientinfoDlg(CWnd* pParent /*=NULL*/)
  14. : CDialog(CEditclientinfoDlg::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(CEditclientinfoDlg)
  17. m_BatholithNo = _T("");
  18. m_CarColor = _T("");
  19. m_CarEngine = _T("");
  20. m_CarNumber = _T("");
  21. m_CarPhone = _T("");
  22. m_CarType = _T("");
  23. m_ClientAge = _T("");
  24. m_ClientDrivelicence = _T("");
  25. m_ClientDuty = _T("");
  26. m_ClientIDcard = _T("");
  27. m_ClientName = _T("");
  28. m_ClientPassword = _T("");
  29. m_ClientPhone = _T("");
  30. m_ClientUnits = _T("");
  31. //}}AFX_DATA_INIT
  32. }
  33. void CEditclientinfoDlg::DoDataExchange(CDataExchange* pDX)
  34. {
  35. CDialog::DoDataExchange(pDX);
  36. //{{AFX_DATA_MAP(CEditclientinfoDlg)
  37. DDX_Text(pDX, IDC_BATHOLITHNO, m_BatholithNo);
  38. DDV_MaxChars(pDX, m_BatholithNo, 24);
  39. DDX_Text(pDX, IDC_CARCOLOR, m_CarColor);
  40. DDV_MaxChars(pDX, m_CarColor, 16);
  41. DDX_Text(pDX, IDC_CARENGINE, m_CarEngine);
  42. DDV_MaxChars(pDX, m_CarEngine, 24);
  43. DDX_Text(pDX, IDC_CARNUMBER, m_CarNumber);
  44. DDV_MaxChars(pDX, m_CarNumber, 20);
  45. DDX_Text(pDX, IDC_CARPHONE, m_CarPhone);
  46. DDV_MaxChars(pDX, m_CarPhone, 16);
  47. DDX_Text(pDX, IDC_CARTYPE, m_CarType);
  48. DDV_MaxChars(pDX, m_CarType, 24);
  49. DDX_Text(pDX, IDC_CLIENTAGE, m_ClientAge);
  50. DDV_MaxChars(pDX, m_ClientAge, 5);
  51. DDX_Text(pDX, IDC_CLIENTDRIVELICENCE, m_ClientDrivelicence);
  52. DDV_MaxChars(pDX, m_ClientDrivelicence, 20);
  53. DDX_Text(pDX, IDC_CLIENTDUTY, m_ClientDuty);
  54. DDV_MaxChars(pDX, m_ClientDuty, 50);
  55. DDX_Text(pDX, IDC_CLIENTIDCARD, m_ClientIDcard);
  56. DDV_MaxChars(pDX, m_ClientIDcard, 22);
  57. DDX_Text(pDX, IDC_CLIENTNAME, m_ClientName);
  58. DDV_MaxChars(pDX, m_ClientName, 14);
  59. DDX_Text(pDX, IDC_CLIENTPASSWORD, m_ClientPassword);
  60. DDV_MaxChars(pDX, m_ClientPassword, 16);
  61. DDX_Text(pDX, IDC_CLIENTPHONE, m_ClientPhone);
  62. DDV_MaxChars(pDX, m_ClientPhone, 16);
  63. DDX_Text(pDX, IDC_CLIENTUNITS, m_ClientUnits);
  64. DDV_MaxChars(pDX, m_ClientUnits, 36);
  65. //}}AFX_DATA_MAP
  66. }
  67. BEGIN_MESSAGE_MAP(CEditclientinfoDlg, CDialog)
  68. //{{AFX_MSG_MAP(CEditclientinfoDlg)
  69. ON_EN_CHANGE(IDC_CARCOLOR, OnChangeCarcolor)
  70. ON_EN_CHANGE(IDC_CARENGINE, OnChangeCarengine)
  71. ON_EN_CHANGE(IDC_CARNUMBER, OnChangeCarnumber)
  72. ON_EN_CHANGE(IDC_CARPHONE, OnChangeCarphone)
  73. ON_EN_CHANGE(IDC_CARTYPE, OnChangeCartype)
  74. ON_EN_CHANGE(IDC_CLIENTAGE, OnChangeClientage)
  75. ON_EN_CHANGE(IDC_CLIENTDRIVELICENCE, OnChangeClientdrivelicence)
  76. ON_EN_CHANGE(IDC_CLIENTDUTY, OnChangeClientduty)
  77. ON_EN_CHANGE(IDC_CLIENTIDCARD, OnChangeClientidcard)
  78. ON_EN_CHANGE(IDC_CLIENTNAME, OnChangeClientname)
  79. ON_EN_CHANGE(IDC_CLIENTPASSWORD, OnChangeClientpassword)
  80. ON_EN_CHANGE(IDC_CLIENTPHONE, OnChangeClientphone)
  81. ON_EN_CHANGE(IDC_CLIENTUNITS, OnChangeClientunits)
  82. //}}AFX_MSG_MAP
  83. END_MESSAGE_MAP()
  84. /////////////////////////////////////////////////////////////////////////////
  85. // CEditclientinfoDlg message handlers
  86. BOOL CEditclientinfoDlg::OnInitDialog() 
  87. {
  88. CDialog::OnInitDialog();
  89. return TRUE;  // return TRUE unless you set the focus to a control
  90.               // EXCEPTION: OCX Property Pages should return FALSE
  91. }
  92. void CEditclientinfoDlg::OnChangeCarcolor() 
  93. {
  94. // TODO: If this is a RICHEDIT control, the control will not
  95. // send this notification unless you override the CDialog::OnInitDialog()
  96. // function and call CRichEditCtrl().SetEventMask()
  97. // with the ENM_CHANGE flag ORed into the mask.
  98. // TODO: Add your control notification handler code here
  99. }
  100. void CEditclientinfoDlg::OnChangeCarengine() 
  101. {
  102. // TODO: If this is a RICHEDIT control, the control will not
  103. // send this notification unless you override the CDialog::OnInitDialog()
  104. // function and call CRichEditCtrl().SetEventMask()
  105. // with the ENM_CHANGE flag ORed into the mask.
  106. // TODO: Add your control notification handler code here
  107. }
  108. void CEditclientinfoDlg::OnChangeCarnumber() 
  109. {
  110. // TODO: If this is a RICHEDIT control, the control will not
  111. // send this notification unless you override the CDialog::OnInitDialog()
  112. // function and call CRichEditCtrl().SetEventMask()
  113. // with the ENM_CHANGE flag ORed into the mask.
  114. // TODO: Add your control notification handler code here
  115. }
  116. void CEditclientinfoDlg::OnChangeCarphone() 
  117. {
  118. // TODO: If this is a RICHEDIT control, the control will not
  119. // send this notification unless you override the CDialog::OnInitDialog()
  120. // function and call CRichEditCtrl().SetEventMask()
  121. // with the ENM_CHANGE flag ORed into the mask.
  122. // TODO: Add your control notification handler code here
  123. }
  124. void CEditclientinfoDlg::OnChangeCartype() 
  125. {
  126. // TODO: If this is a RICHEDIT control, the control will not
  127. // send this notification unless you override the CDialog::OnInitDialog()
  128. // function and call CRichEditCtrl().SetEventMask()
  129. // with the ENM_CHANGE flag ORed into the mask.
  130. // TODO: Add your control notification handler code here
  131. }
  132. void CEditclientinfoDlg::OnChangeClientage() 
  133. {
  134. // TODO: If this is a RICHEDIT control, the control will not
  135. // send this notification unless you override the CDialog::OnInitDialog()
  136. // function and call CRichEditCtrl().SetEventMask()
  137. // with the ENM_CHANGE flag ORed into the mask.
  138. // TODO: Add your control notification handler code here
  139. }
  140. void CEditclientinfoDlg::OnChangeClientdrivelicence() 
  141. {
  142. // TODO: If this is a RICHEDIT control, the control will not
  143. // send this notification unless you override the CDialog::OnInitDialog()
  144. // function and call CRichEditCtrl().SetEventMask()
  145. // with the ENM_CHANGE flag ORed into the mask.
  146. // TODO: Add your control notification handler code here
  147. }
  148. void CEditclientinfoDlg::OnChangeClientduty() 
  149. {
  150. // TODO: If this is a RICHEDIT control, the control will not
  151. // send this notification unless you override the CDialog::OnInitDialog()
  152. // function and call CRichEditCtrl().SetEventMask()
  153. // with the ENM_CHANGE flag ORed into the mask.
  154. // TODO: Add your control notification handler code here
  155. }
  156. void CEditclientinfoDlg::OnChangeClientidcard() 
  157. {
  158. // TODO: If this is a RICHEDIT control, the control will not
  159. // send this notification unless you override the CDialog::OnInitDialog()
  160. // function and call CRichEditCtrl().SetEventMask()
  161. // with the ENM_CHANGE flag ORed into the mask.
  162. // TODO: Add your control notification handler code here
  163. }
  164. void CEditclientinfoDlg::OnChangeClientname() 
  165. {
  166. // TODO: If this is a RICHEDIT control, the control will not
  167. // send this notification unless you override the CDialog::OnInitDialog()
  168. // function and call CRichEditCtrl().SetEventMask()
  169. // with the ENM_CHANGE flag ORed into the mask.
  170. // TODO: Add your control notification handler code here
  171. }
  172. void CEditclientinfoDlg::OnChangeClientpassword() 
  173. {
  174. // TODO: If this is a RICHEDIT control, the control will not
  175. // send this notification unless you override the CDialog::OnInitDialog()
  176. // function and call CRichEditCtrl().SetEventMask()
  177. // with the ENM_CHANGE flag ORed into the mask.
  178. // TODO: Add your control notification handler code here
  179. }
  180. void CEditclientinfoDlg::OnChangeClientphone() 
  181. {
  182. // TODO: If this is a RICHEDIT control, the control will not
  183. // send this notification unless you override the CDialog::OnInitDialog()
  184. // function and call CRichEditCtrl().SetEventMask()
  185. // with the ENM_CHANGE flag ORed into the mask.
  186. // TODO: Add your control notification handler code here
  187. }
  188. void CEditclientinfoDlg::OnChangeClientunits() 
  189. {
  190. // TODO: If this is a RICHEDIT control, the control will not
  191. // send this notification unless you override the CDialog::OnInitDialog()
  192. // function and call CRichEditCtrl().SetEventMask()
  193. // with the ENM_CHANGE flag ORed into the mask.
  194. // TODO: Add your control notification handler code here
  195. }