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

Windows编程

开发平台:

Visual C++

  1. // addform.h : interface of the CAddForm class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. class CAddForm : public CRecordView
  5. {
  6. protected:
  7. CAddForm(UINT nIDTemplate);
  8. DECLARE_DYNAMIC(CAddForm)
  9. protected:
  10. BOOL m_bAddMode;
  11. // Operations
  12. public:
  13. virtual BOOL OnMove(UINT nIDMoveCommand);
  14. virtual BOOL RecordAdd();
  15. virtual BOOL RecordRefresh();
  16. virtual BOOL RecordDelete();
  17. // Implementation
  18. public:
  19. virtual ~CAddForm();
  20. // Generated message map functions
  21. protected:
  22. afx_msg void OnRecordAdd();
  23. afx_msg void OnRecordRefresh();
  24. afx_msg void OnRecordDelete();
  25. afx_msg void OnUpdateRecordFirst(CCmdUI* pCmdUI);
  26. DECLARE_MESSAGE_MAP()
  27. };