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.cpp < prev    next >
C/C++ Source or Header  |  1998-03-26  |  2KB  |  64 lines

  1. // StudDlg.cpp : implementation 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 "stdafx.h"
  14. #include "StudDlg.h"
  15.  
  16. #ifdef _DEBUG
  17. #undef THIS_FILE
  18. static char THIS_FILE[] = __FILE__;
  19. #endif
  20.  
  21. /////////////////////////////////////////////////////////////////////////////
  22. // CStudentPage property page
  23.  
  24. // IMPLEMENT_DYNCREATE(CStudentPage, CPropertyPage)
  25.  
  26. #ifdef _DEBUG
  27. #define new DEBUG_NEW
  28. #endif
  29.  
  30. CStudentPage::CStudentPage() : CPropertyPage(CStudentPage::IDD)
  31. {
  32.     //{{AFX_DATA_INIT(CStudentPage)
  33.     //}}AFX_DATA_INIT
  34. }
  35.  
  36. CStudentPage::~CStudentPage()
  37. {
  38. }
  39.  
  40. void CStudentPage::DoDataExchange(CDataExchange* pDX)
  41. {
  42.     CPropertyPage::DoDataExchange(pDX);
  43.     //{{AFX_DATA_MAP(CStudentPage)
  44.     //}}AFX_DATA_MAP
  45. }
  46.  
  47. BOOL CStudentPage::OnInitDialog()
  48. {
  49.     CPropertyPage::OnInitDialog();
  50.  
  51.     SetModified(TRUE);  // allow the APPLY button to become active
  52.  
  53.     return TRUE;
  54. }
  55.  
  56.  
  57. BEGIN_MESSAGE_MAP(CStudentPage, CPropertyPage)
  58.     //{{AFX_MSG_MAP(CStudentPage)
  59.     //}}AFX_MSG_MAP
  60. END_MESSAGE_MAP()
  61.  
  62. /////////////////////////////////////////////////////////////////////////////
  63. // CStudentPage message handlers
  64.