OPTIONSD.CPP
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:2k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // OptionsD.cpp : implementation file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. #include "stdafx.h"
  13. #include "DaoView.h"
  14. #include "OptionsD.h"
  15. #ifdef _DEBUG
  16. #undef THIS_FILE
  17. static char THIS_FILE[] = __FILE__;
  18. #endif
  19. /////////////////////////////////////////////////////////////////////////////
  20. // COptionsDlg dialog
  21. COptionsDlg::COptionsDlg(UINT nIDCaption /*=0*/)
  22. : CPropertyPage(COptionsDlg::IDD, nIDCaption)
  23. {
  24. //{{AFX_DATA_INIT(COptionsDlg)
  25. m_bShowSystemObjects = FALSE;
  26. m_bShowWarnings = FALSE;
  27. m_bOpenODBC = FALSE;
  28. m_nMaxRecords = 0;
  29. //}}AFX_DATA_INIT
  30. }
  31. void COptionsDlg::DoDataExchange(CDataExchange* pDX)
  32. {
  33. CPropertyPage::DoDataExchange(pDX);
  34. //{{AFX_DATA_MAP(COptionsDlg)
  35. DDX_Check(pDX, IDC_BSYSTEMOBJECTS, m_bShowSystemObjects);
  36. DDX_Check(pDX, IDC_BWARNINGS, m_bShowWarnings);
  37. DDX_Check(pDX, IDC_BOPENODBC, m_bOpenODBC);
  38. DDX_Text(pDX, IDC_MAXRECS, m_nMaxRecords);
  39. //}}AFX_DATA_MAP
  40. }
  41. BEGIN_MESSAGE_MAP(COptionsDlg, CPropertyPage)
  42. //{{AFX_MSG_MAP(COptionsDlg)
  43. //}}AFX_MSG_MAP
  44. END_MESSAGE_MAP()
  45. /////////////////////////////////////////////////////////////////////////////
  46. // COptionsDlg message handlers