home *** CD-ROM | disk | FTP | other *** search
- // crsform.h : header file
- //
-
- /////////////////////////////////////////////////////////////////////////////
- // CCourseForm record view
-
- class CCourseForm : public CAddForm
- {
- DECLARE_DYNCREATE(CCourseForm)
- public:
- CCourseForm(); // protected constructor used by dynamic creation
-
- // Form Data
- public:
- //{{AFX_DATA(CCourseForm)
- enum { IDD = IDD_COURSE_FORM };
- CEdit m_ctlCourseID;
- CCourseSet* m_pSet;
- //}}AFX_DATA
-
- // Attributes
- public:
-
- // Operations
- public:
-
- // Overrides
- // ClassWizard generate virtual function overrides
- //{{AFX_VIRTUAL(CSectionForm)
- public:
- virtual CRecordset* OnGetRecordset();
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- virtual void OnInitialUpdate(); // called first time after construct
- virtual BOOL OnMove(UINT nIDMoveCommand);
- //}}AFX_VIRTUAL
-
- // Implementation
- protected:
- virtual ~CCourseForm();
-
- // Generated message map functions
- //{{AFX_MSG(CCourseForm)
- afx_msg void OnRecordAdd();
- afx_msg void OnRecordDelete();
- afx_msg void OnRecordRefresh();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-
- /////////////////////////////////////////////////////////////////////////////
-