ODBCDepartmentView.h
上传用户:benben_wyd
上传日期:2010-02-26
资源大小:1229k
文件大小:3k
源码类别:

书籍源码

开发平台:

Visual C++

  1. // ODBCDepartmentView.h : interface of the CODBCDepartmentView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_ODBCDEPARTMENTVIEW_H__4C511D25_3A73_11D2_9949_CA74FE5E5648__INCLUDED_)
  5. #define AFX_ODBCDEPARTMENTVIEW_H__4C511D25_3A73_11D2_9949_CA74FE5E5648__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "ODBCInstructorSet.h"
  10. class CODBCDepartmentSet;
  11. class CODBCDepartmentView : public CRecordView
  12. {
  13. protected: // create from serialization only
  14. CODBCDepartmentView();
  15. DECLARE_DYNCREATE(CODBCDepartmentView)
  16. public:
  17. //{{AFX_DATA(CODBCDepartmentView)
  18. enum { IDD = IDD_ODBCDEPARTMENT_FORM };
  19. CODBCDepartmentSet* m_pSet;
  20. CString m_FindDeptCode;
  21. //}}AFX_DATA
  22. CODBCInstructorSet* m_pInstructorSet;
  23. // Attributes
  24. public:
  25. CODBCDepartmentDoc* GetDocument();
  26. BOOL m_bAddingRecord;
  27. BOOL m_bAddingInstructor;
  28. BOOL m_bFieldsChanged;
  29. // Operations
  30. public:
  31. // Overrides
  32. // ClassWizard generated virtual function overrides
  33. //{{AFX_VIRTUAL(CODBCDepartmentView)
  34. public:
  35. virtual CRecordset* OnGetRecordset();
  36. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  37. virtual BOOL OnMove(UINT nIDMoveCommand);
  38. protected:
  39. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  40. virtual void OnInitialUpdate(); // called first time after construct
  41. //}}AFX_VIRTUAL
  42. // Implementation
  43. public:
  44. virtual ~CODBCDepartmentView();
  45. void UpdateInstructor();
  46. void AddInstructor();
  47. void OpenInstructorRecordset(long nRows = 0);
  48. #ifdef _DEBUG
  49. virtual void AssertValid() const;
  50. virtual void Dump(CDumpContext& dc) const;
  51. #endif
  52. protected:
  53. // Generated message map functions
  54. protected:
  55. //{{AFX_MSG(CODBCDepartmentView)
  56. afx_msg void OnRecordDeleterecord();
  57. afx_msg void OnUpdateRecordDeleterecord(CCmdUI* pCmdUI);
  58. afx_msg void OnRecordQueryrecord();
  59. afx_msg void OnFileNew();
  60. afx_msg void OnFileSave();
  61. afx_msg void OnDestroy();
  62. afx_msg void OnChangeDepartmentcode();
  63. afx_msg void OnChangeDepartmentname();
  64. afx_msg void OnUpdateFileSave(CCmdUI* pCmdUI);
  65. afx_msg void OnChangeEmail();
  66. afx_msg void OnChangeInstructorname();
  67. afx_msg void OnChangeNotes();
  68. afx_msg void OnInstructorAddinstructor();
  69. afx_msg void OnInstructorDeleteinstructor();
  70. afx_msg void OnInstructorFirstrecord();
  71. afx_msg void OnInstructorLastrecord();
  72. afx_msg void OnInstructorNextrecord();
  73. afx_msg void OnInstructorPreviousrecord();
  74. afx_msg void OnUpdateInstructorDeleteinstructor(CCmdUI* pCmdUI);
  75. afx_msg void OnUpdateInstructorFirstrecord(CCmdUI* pCmdUI);
  76. afx_msg void OnUpdateInstructorLastrecord(CCmdUI* pCmdUI);
  77. afx_msg void OnUpdateInstructorNextrecord(CCmdUI* pCmdUI);
  78. afx_msg void OnUpdateInstructorPreviousrecord(CCmdUI* pCmdUI);
  79. //}}AFX_MSG
  80. DECLARE_MESSAGE_MAP()
  81. };
  82. #ifndef _DEBUG  // debug version in ODBCDepartmentView.cpp
  83. inline CODBCDepartmentDoc* CODBCDepartmentView::GetDocument()
  84.    { return (CODBCDepartmentDoc*)m_pDocument; }
  85. #endif
  86. /////////////////////////////////////////////////////////////////////////////
  87. //{{AFX_INSERT_LOCATION}}
  88. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  89. #endif // !defined(AFX_ODBCDEPARTMENTVIEW_H__4C511D25_3A73_11D2_9949_CA74FE5E5648__INCLUDED_)