AddContact.cpp 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. // AddContact.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "AutoRun.h"
  5. #include "AddContact.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // AddContact dialog
  13. AddContact::AddContact(CWnd* pParent /*=NULL*/)
  14. : CDialog(AddContact::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(AddContact)
  17. m_name = _T("");
  18. m_phone = _T("");
  19. //}}AFX_DATA_INIT
  20. }
  21. void AddContact::DoDataExchange(CDataExchange* pDX)
  22. {
  23. CDialog::DoDataExchange(pDX);
  24. //{{AFX_DATA_MAP(AddContact)
  25. DDX_Text(pDX, IDC_EDITname, m_name);
  26. DDX_Text(pDX, IDC_EDITphone, m_phone);
  27. //}}AFX_DATA_MAP
  28. }
  29. BEGIN_MESSAGE_MAP(AddContact, CDialog)
  30. //{{AFX_MSG_MAP(AddContact)
  31. //}}AFX_MSG_MAP
  32. END_MESSAGE_MAP()
  33. /////////////////////////////////////////////////////////////////////////////
  34. // AddContact message handlers
  35. void AddContact::OnOK()
  36. {
  37. // TODO: Add extra validation here
  38. UpdateData();
  39. m_name.TrimLeft ();
  40. m_name.TrimRight ();
  41. m_phone.TrimLeft ();
  42. m_phone.TrimRight ();
  43. if(m_name.IsEmpty ())
  44. {
  45. AfxMessageBox("联系人姓名不能为空!");
  46. return;
  47. }
  48. if(m_phone.IsEmpty ())
  49. {
  50. AfxMessageBox("电话号码不能为空!");
  51. return;
  52. }
  53. CDialog::OnOK();
  54. }