home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / BC_502 / CATALG2.PAK / SETTINGS.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1997-05-06  |  1.6 KB  |  60 lines

  1. // TableSettings.cpp : implementation file
  2. //
  3.  
  4. // This is a part of the Microsoft Foundation Classes C++ library.
  5. // Copyright (C) 1992-1995 Microsoft Corporation
  6. // All rights reserved.
  7. //
  8. // This source code is only intended as a supplement to the
  9. // Microsoft Foundation Classes Reference and related
  10. // electronic documentation provided with the library.
  11. // See these sources for detailed information regarding the
  12. // Microsoft Foundation Classes product.
  13.  
  14. #include "stdafx.h"
  15. #include "catalog2.h"
  16. #include "Settings.h"
  17.  
  18. #ifdef _DEBUG
  19. #undef THIS_FILE
  20. static char THIS_FILE[] = __FILE__;
  21. #endif
  22.  
  23. /////////////////////////////////////////////////////////////////////////////
  24. // CTableSettings property page
  25.  
  26. IMPLEMENT_DYNCREATE(CTableSettings, CPropertyPage)
  27.  
  28. CTableSettings::CTableSettings() : CPropertyPage(CTableSettings::IDD)
  29. {
  30.     //{{AFX_DATA_INIT(CTableSettings)
  31.     m_bSynonyms = FALSE;
  32.     m_bSystemTables = FALSE;
  33.     m_bViews = FALSE;
  34.     //}}AFX_DATA_INIT
  35. }
  36.  
  37. CTableSettings::~CTableSettings()
  38. {
  39. }
  40.  
  41. void CTableSettings::DoDataExchange(CDataExchange* pDX)
  42. {
  43.     CPropertyPage::DoDataExchange(pDX);
  44.     //{{AFX_DATA_MAP(CTableSettings)
  45.     DDX_Check(pDX, IDC_ALIAI, m_bSynonyms);
  46.     DDX_Check(pDX, IDC_SYSTABLES, m_bSystemTables);
  47.     DDX_Check(pDX, IDC_VIEWS, m_bViews);
  48.     //}}AFX_DATA_MAP
  49. }
  50.  
  51.  
  52. BEGIN_MESSAGE_MAP(CTableSettings, CPropertyPage)
  53.     //{{AFX_MSG_MAP(CTableSettings)
  54.         // NOTE: the ClassWizard will add message map macros here
  55.     //}}AFX_MSG_MAP
  56. END_MESSAGE_MAP()
  57.  
  58. /////////////////////////////////////////////////////////////////////////////
  59. // CTableSettings message handlers
  60.