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

Windows编程

开发平台:

Visual C++

  1. // SectForm.h : interface of the CSectionForm class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. class CSectionSet;
  5. class CSectionForm : public CRecordView
  6. {
  7. protected: // create from serialization only
  8. CSectionForm();
  9. DECLARE_DYNCREATE(CSectionForm)
  10. public:
  11. //{{AFX_DATA(CSectionForm)
  12. enum{ IDD = IDD_ENROLL_FORM };
  13. CSectionSet* m_pSet;
  14. //}}AFX_DATA
  15. // Attributes
  16. public:
  17. CEnrollDoc* GetDocument();
  18. // Operations
  19. public:
  20. // Overrides
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(CSectionForm)
  23. public:
  24. virtual CRecordset* OnGetRecordset();
  25. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  26. protected:
  27. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  28. virtual void OnInitialUpdate(); // called first time after construct
  29. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  30. virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
  31. virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
  32. //}}AFX_VIRTUAL
  33. // Implementation
  34. public:
  35. virtual ~CSectionForm();
  36. #ifdef _DEBUG
  37. virtual void AssertValid() const;
  38. virtual void Dump(CDumpContext& dc) const;
  39. #endif
  40. protected:
  41. // Generated message map functions
  42. protected:
  43. //{{AFX_MSG(CSectionForm)
  44. // NOTE - the ClassWizard will add and remove member functions here.
  45. //    DO NOT EDIT what you see in these blocks of generated code !
  46. //}}AFX_MSG
  47. DECLARE_MESSAGE_MAP()
  48. };
  49. #ifndef _DEBUG  // debug version in SectForm.cpp
  50. inline CEnrollDoc* CSectionForm::GetDocument()
  51.    { return (CEnrollDoc*)m_pDocument; }
  52. #endif
  53. /////////////////////////////////////////////////////////////////////////////