home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 21 / IOPROG_21.ISO / SOFT / PROPVIEW.ZIP / DevStudio / MyProjects / MdLessPpsh / Pg1.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1998-05-20  |  1007 b   |  47 lines

  1. // Pg1.cpp : implementation file
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "MdLessPpsh.h"
  6. #include "Pg1.h"
  7.  
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13.  
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CPg1 property page
  16.  
  17. IMPLEMENT_DYNCREATE(CPg1, CPropertyPage)
  18.  
  19. CPg1::CPg1() : CPropertyPage(CPg1::IDD)
  20. {
  21.     //{{AFX_DATA_INIT(CPg1)
  22.         // NOTE: the ClassWizard will add member initialization here
  23.     //}}AFX_DATA_INIT
  24. }
  25.  
  26. CPg1::~CPg1()
  27. {
  28. }
  29.  
  30. void CPg1::DoDataExchange(CDataExchange* pDX)
  31. {
  32.     CPropertyPage::DoDataExchange(pDX);
  33.     //{{AFX_DATA_MAP(CPg1)
  34.         // NOTE: the ClassWizard will add DDX and DDV calls here
  35.     //}}AFX_DATA_MAP
  36. }
  37.  
  38.  
  39. BEGIN_MESSAGE_MAP(CPg1, CPropertyPage)
  40.     //{{AFX_MSG_MAP(CPg1)
  41.         // NOTE: the ClassWizard will add message map macros here
  42.     //}}AFX_MSG_MAP
  43. END_MESSAGE_MAP()
  44.  
  45. /////////////////////////////////////////////////////////////////////////////
  46. // CPg1 message handlers
  47.