home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / mfc / database / daoenrol / addform.h < prev    next >
C/C++ Source or Header  |  1998-03-26  |  1KB  |  40 lines

  1. // addform.h : interface of the CAddForm class
  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.  
  13. class CAddForm : public CDaoRecordView
  14. {
  15. protected:
  16.     CAddForm(UINT nIDTemplate);
  17.     DECLARE_DYNAMIC(CAddForm)
  18.  
  19. protected:
  20.     BOOL m_bAddMode;
  21.  
  22. // Operations
  23. public:
  24.     virtual BOOL OnMove(UINT nIDMoveCommand);
  25.     virtual BOOL RecordAdd();
  26.     virtual BOOL RecordRefresh();
  27.     virtual BOOL RecordDelete();
  28.  
  29. // Implementation
  30. public:
  31.     virtual ~CAddForm();
  32. // Generated message map functions
  33. protected:
  34.     afx_msg void OnRecordAdd();
  35.     afx_msg void OnRecordRefresh();
  36.     afx_msg void OnRecordDelete();
  37.     afx_msg void OnUpdateRecordFirst(CCmdUI* pCmdUI);
  38.     DECLARE_MESSAGE_MAP()
  39. };
  40.