ScoreDlg.cpp
上传用户:rs600066
上传日期:2017-10-16
资源大小:4788k
文件大小:1k
源码类别:

数据库系统

开发平台:

Visual C++

  1. // ScoreDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "school.h"
  5. #include "ScoreDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CScoreDlg dialog
  13. CScoreDlg::CScoreDlg(CWnd* pParent /*=NULL*/)
  14. : CDialog(CScoreDlg::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(CScoreDlg)
  17. m_bAbsent = FALSE;
  18. m_strMakeup = _T("");
  19. m_strScore = _T("");
  20. //}}AFX_DATA_INIT
  21. }
  22. void CScoreDlg::DoDataExchange(CDataExchange* pDX)
  23. {
  24. CDialog::DoDataExchange(pDX);
  25. //{{AFX_DATA_MAP(CScoreDlg)
  26. DDX_Check(pDX, IDC_CHECK1, m_bAbsent);
  27. DDX_Text(pDX, IDC_EDIT_MAKEUP, m_strMakeup);
  28. DDX_Text(pDX, IDC_EDIT_SCORE, m_strScore);
  29. //}}AFX_DATA_MAP
  30. }
  31. BEGIN_MESSAGE_MAP(CScoreDlg, CDialog)
  32. //{{AFX_MSG_MAP(CScoreDlg)
  33. //}}AFX_MSG_MAP
  34. END_MESSAGE_MAP()
  35. /////////////////////////////////////////////////////////////////////////////
  36. // CScoreDlg message handlers
  37. void CScoreDlg::OnOK() 
  38. {
  39. UpdateData();
  40. CDialog::OnOK();
  41. }