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

  1. // summpage.cpp : implementation file
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "drawcli.h"
  6. #include "summpage.h"
  7.  
  8. #ifdef _DEBUG
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12.  
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CSummPage property page
  15.  
  16. IMPLEMENT_DYNCREATE(CSummPage, CPropertyPage)
  17.  
  18. CSummPage::CSummPage() : CPropertyPage(CSummPage::IDD)
  19. {
  20.         //{{AFX_DATA_INIT(CSummPage)
  21.     m_strAuthor = _T("");
  22.     m_strKeywd = _T("");
  23.     m_strSubj = _T("");
  24.     m_strCmt = _T("");
  25.     m_strTempl = _T("");
  26.     m_strTitle = _T("");
  27.     m_strAppname = _T("");
  28.     //}}AFX_DATA_INIT
  29. }
  30.  
  31. CSummPage::~CSummPage()
  32. {
  33. }
  34.  
  35. void CSummPage::DoDataExchange(CDataExchange* pDX)
  36. {
  37.     CPropertyPage::DoDataExchange(pDX);
  38.         //{{AFX_DATA_MAP(CSummPage)
  39.     DDX_Text(pDX, IDC_AUTHOR, m_strAuthor);
  40.     DDX_Text(pDX, IDC_KEYWORDS, m_strKeywd);
  41.     DDX_Text(pDX, IDC_SUBJECT, m_strSubj);
  42.     DDX_Text(pDX, IDC_COMMENTS, m_strCmt);
  43.     DDX_Text(pDX, IDC_TEMPLATE, m_strTempl);
  44.     DDX_Text(pDX, IDC_TITLE, m_strTitle);
  45.     DDX_Text(pDX, IDC_APPNAME, m_strAppname);
  46.     //}}AFX_DATA_MAP
  47. }
  48.  
  49.  
  50. BEGIN_MESSAGE_MAP(CSummPage, CPropertyPage)
  51.         //{{AFX_MSG_MAP(CSummPage)
  52.         // NOTE: the ClassWizard will add message map macros here
  53.     //}}AFX_MSG_MAP
  54. END_MESSAGE_MAP()
  55.  
  56. /////////////////////////////////////////////////////////////////////////////
  57. // CSummPage message handlers
  58.