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

  1. // InstrDlg.h : header file
  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. #include "resource.h"
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CInstructorPage dialog
  16. #ifndef INC_INSTRPAGE_H
  17. #define INC_INSTRPAGE_H
  18. #include "rdc.h"
  19.  
  20. class CInstructorPage : public CPropertyPage
  21. {
  22. //  DECLARE_DYNCREATE(CInstructorPage)
  23.  
  24. // Construction
  25. public:
  26.     CInstructorPage();
  27.     ~CInstructorPage();
  28.  
  29. // Dialog Data
  30.     //{{AFX_DATA(CInstructorPage)
  31.     enum { IDD = IDD_INSTRUCTOR };
  32.     //}}AFX_DATA
  33.  
  34.  
  35. // Overrides
  36.     // ClassWizard generate virtual function overrides
  37.     //{{AFX_VIRTUAL(CInstructorPage)
  38.     protected:
  39.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  40.     virtual BOOL OnInitDialog();
  41.     //}}AFX_VIRTUAL
  42.  
  43. // Implementation
  44. protected:
  45. //  CMsDgridCtrl m_GridCtrl;
  46.  
  47.     // Generated message map functions
  48.     //{{AFX_MSG(CInstructorPage)
  49.     //}}AFX_MSG
  50.     DECLARE_MESSAGE_MAP()
  51.  
  52. };
  53.  
  54. #endif
  55.