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

数据库系统

开发平台:

Visual C++

  1. #if !defined(AFX_SCOREQUERYDLG_H__54483267_3F11_480E_A7EC_E2A3176DC4BF__INCLUDED_)
  2. #define AFX_SCOREQUERYDLG_H__54483267_3F11_480E_A7EC_E2A3176DC4BF__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // ScoreQueryDlg.h : header file
  7. //
  8. #include "studentset.h"
  9. #include "scoreset.h"
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CScoreQueryDlg dialog
  12. class CScoreQueryDlg : public CDialog
  13. {
  14. // Construction
  15. public:
  16. CScoreQueryDlg(CWnd* pParent = NULL);   // standard constructor
  17. // Dialog Data
  18. //{{AFX_DATA(CScoreQueryDlg)
  19. enum { IDD = IDD_DIALOG_SCORE_QUERY };
  20. CListCtrl m_ctrScoreList;
  21. CListCtrl m_ctrStuList;
  22. CComboBox m_ctrClass;
  23. CString m_strClass;
  24. CString m_strName;
  25. //}}AFX_DATA
  26. // Overrides
  27. // ClassWizard generated virtual function overrides
  28. //{{AFX_VIRTUAL(CScoreQueryDlg)
  29. protected:
  30. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  31. //}}AFX_VIRTUAL
  32. // Implementation
  33. protected:
  34. // Generated message map functions
  35. //{{AFX_MSG(CScoreQueryDlg)
  36. virtual BOOL OnInitDialog();
  37. afx_msg void OnButtonList();
  38. afx_msg void OnButtonSearch();
  39. afx_msg void OnClickList1(NMHDR* pNMHDR, LRESULT* pResult);
  40. //}}AFX_MSG
  41. DECLARE_MESSAGE_MAP()
  42. private:
  43. CStudentSet m_studentSet;
  44. CScoreSet m_scoreSet;
  45. void RefreshData(CString strSQL);
  46. };
  47. //{{AFX_INSERT_LOCATION}}
  48. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  49. #endif // !defined(AFX_SCOREQUERYDLG_H__54483267_3F11_480E_A7EC_E2A3176DC4BF__INCLUDED_)