SECTNDLG.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // SectnDlg.h : header file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. #include "resource.h"
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CSectionPage dialog
  15. #ifndef INC_SECTNPAGE_H
  16. #define INC_SECTNPAGE_H
  17. #include "rdc.h"
  18. class CSectionPage : public CPropertyPage
  19. {
  20. //  DECLARE_DYNCREATE(CSectionPage)
  21. // Construction
  22. public:
  23. CSectionPage();
  24. ~CSectionPage();
  25. CRdc* m_pCourseRDC;
  26. BOOL OnCourseChanged();
  27. BOOL OnStudentsChanged();
  28. // Dialog Data
  29. //{{AFX_DATA(CSectionPage)
  30. enum { IDD = IDD_SECTION };
  31. //}}AFX_DATA
  32. // Overrides
  33. // ClassWizard generate virtual function overrides
  34. //{{AFX_VIRTUAL(CSectionPage)
  35. protected:
  36. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  37. virtual BOOL OnInitDialog();
  38. //}}AFX_VIRTUAL
  39. // Implementation
  40. protected:
  41. BOOL m_initiated; // flag set by OnInitDialog()
  42. // Generated message map functions
  43. //{{AFX_MSG(CSectionPage)
  44. afx_msg BOOL OnDSCSectionNotify(DSCSTATE nState, DSCREASON nReason, BOOL* pBool);
  45. DECLARE_EVENTSINK_MAP()
  46. //}}AFX_MSG
  47. DECLARE_MESSAGE_MAP()
  48. };
  49. #endif