// colpage.cpp : implementation file // // This is a part of the Microsoft Foundation Classes and // Templates (MFC&T). // Copyright (C) 1998 Microsoft Corporation // All rights reserved. // // This source code is only intended as a supplement to the // MFC&T Reference and related electronic documentation provided // with the library. See these sources for detailed information // regarding the MFC&T product. // #include "stdafx.h" #include "CatDB.h" #include "colpage.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif ///////////////////////////////////////////////////////////////////////////// // CColumnPage property page IMPLEMENT_DYNCREATE(CColumnPage, CPropertyPage) CColumnPage::CColumnPage() : CPropertyPage(CColumnPage::IDD) { //{{AFX_DATA_INIT(CColumnPage) m_bLength = FALSE; m_bNullability = FALSE; m_bPrecision = FALSE; //}}AFX_DATA_INIT } CColumnPage::~CColumnPage() { } void CColumnPage::DoDataExchange(CDataExchange* pDX) { CPropertyPage::DoDataExchange(pDX); //{{AFX_DATA_MAP(CColumnPage) DDX_Check(pDX, IDC_LENGTH, m_bLength); DDX_Check(pDX, IDC_NULLABILITY, m_bNullability); DDX_Check(pDX, IDC_PRECISION, m_bPrecision); //}}AFX_DATA_MAP } BEGIN_MESSAGE_MAP(CColumnPage, CPropertyPage) //{{AFX_MSG_MAP(CColumnPage) // NOTE: the ClassWizard will add message map macros here //}}AFX_MSG_MAP END_MESSAGE_MAP() ///////////////////////////////////////////////////////////////////////////// // CColumnPage message handlers