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

Windows编程

开发平台:

Visual C++

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