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 / studdlg.h < prev   
C/C++ Source or Header  |  1998-03-26  |  1KB  |  56 lines

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