ShowPMessage.cpp
上传用户:sdsuchuang
上传日期:2013-01-12
资源大小:2228k
文件大小:1k
源码类别:

图形图像处理

开发平台:

Visual C++

  1. // ShowPMessage.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "FaceDetect.h"
  5. #include "ShowPMessage.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // ShowPMessage dialog
  13. ShowPMessage::ShowPMessage(CWnd* pParent /*=NULL*/)
  14. : CDialog(ShowPMessage::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(ShowPMessage)
  17. m_Name = _T("");
  18. m_Sex = _T("");
  19. m_Birthday = _T("");
  20. m_Teleph = _T("");
  21. m_Address = _T("");
  22. m_Age = _T("");
  23. //}}AFX_DATA_INIT
  24. }
  25. void ShowPMessage::DoDataExchange(CDataExchange* pDX)
  26. {
  27. CDialog::DoDataExchange(pDX);
  28. //{{AFX_DATA_MAP(ShowPMessage)
  29. DDX_Text(pDX, IDC_EDIT1, m_Name);
  30. DDX_Text(pDX, IDC_EDIT3, m_Sex);
  31. DDX_Text(pDX, IDC_EDIT4, m_Birthday);
  32. DDX_Text(pDX, IDC_EDIT5, m_Teleph);
  33. DDX_Text(pDX, IDC_EDIT6, m_Address);
  34. DDX_Text(pDX, IDC_EDIT2, m_Age);
  35. //}}AFX_DATA_MAP
  36. }
  37. BEGIN_MESSAGE_MAP(ShowPMessage, CDialog)
  38. //{{AFX_MSG_MAP(ShowPMessage)
  39. // NOTE: the ClassWizard will add message map macros here
  40. //}}AFX_MSG_MAP
  41. END_MESSAGE_MAP()
  42. /////////////////////////////////////////////////////////////////////////////
  43. // ShowPMessage message handlers