123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- // ReportBasePage.cpp : implementation file
- //
- #include "stdafx.h"
- #include "IDE.h"
- #include "ReportBasePage.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CReportBasePage property page
- IMPLEMENT_DYNCREATE(CReportBasePage, CPropertyPage)
- CReportBasePage::CReportBasePage() : CPropertyPage(CReportBasePage::IDD)
- {
- //{{AFX_DATA_INIT(CReportBasePage)
- m_bAddAve = FALSE;
- m_bAddMax = FALSE;
- m_bAddMin = FALSE;
- m_nType = -1;
- m_bShowRowHead = FALSE;
- //}}AFX_DATA_INIT
- }
- CReportBasePage::~CReportBasePage()
- {
- }
- void CReportBasePage::DoDataExchange(CDataExchange* pDX)
- {
- CPropertyPage::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(CReportBasePage)
- DDX_Check(pDX, IDC_ADDAVE, m_bAddAve);
- DDX_Check(pDX, IDC_ADDMAX, m_bAddMax);
- DDX_Check(pDX, IDC_ADDMIN, m_bAddMin);
- DDX_Radio(pDX, IDC_TYPE, m_nType);
- DDX_Check(pDX, IDC_SHOWROWHEAD, m_bShowRowHead);
- //}}AFX_DATA_MAP
- }
- BEGIN_MESSAGE_MAP(CReportBasePage, CPropertyPage)
- //{{AFX_MSG_MAP(CReportBasePage)
- // NOTE: the ClassWizard will add message map macros here
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // CReportBasePage message handlers
|