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

  1. // IntroPg.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 "Wizard97.h"
  15. #include "IntroPg.h"
  16.  
  17. #ifdef _DEBUG
  18. #define new DEBUG_NEW
  19. #undef THIS_FILE
  20. static char THIS_FILE[] = __FILE__;
  21. #endif
  22.  
  23. /////////////////////////////////////////////////////////////////////////////
  24. // CIntroPage property page
  25.  
  26. IMPLEMENT_DYNCREATE(CIntroPage, CPropertyPageEx)
  27.  
  28. CIntroPage::CIntroPage() : CPropertyPageEx(CIntroPage::IDD)
  29. {
  30.     //{{AFX_DATA_INIT(CIntroPage)
  31.         // NOTE: the ClassWizard will add member initialization here
  32.     //}}AFX_DATA_INIT
  33.     m_psp.dwFlags |= PSP_HIDEHEADER;
  34. }
  35.  
  36. CIntroPage::~CIntroPage()
  37. {
  38. }
  39.  
  40. void CIntroPage::DoDataExchange(CDataExchange* pDX)
  41. {
  42.     CPropertyPageEx::DoDataExchange(pDX);
  43.     //{{AFX_DATA_MAP(CIntroPage)
  44.         // NOTE: the ClassWizard will add DDX and DDV calls here
  45.     //}}AFX_DATA_MAP
  46. }
  47.  
  48.  
  49. BEGIN_MESSAGE_MAP(CIntroPage, CPropertyPageEx)
  50.     //{{AFX_MSG_MAP(CIntroPage)
  51.         // NOTE: the ClassWizard will add message map macros here
  52.     //}}AFX_MSG_MAP
  53. END_MESSAGE_MAP()
  54.  
  55. /////////////////////////////////////////////////////////////////////////////
  56. // CIntroPage message handlers
  57.  
  58. BOOL CIntroPage::OnSetActive()
  59. {
  60.     CPropertySheet* pSheet = (CPropertySheet*)GetParent();
  61.     ASSERT_KINDOF(CPropertySheet, pSheet);
  62.     pSheet->SetWizardButtons(PSWIZB_NEXT);
  63.     return CPropertyPageEx::OnSetActive();
  64. }
  65.