home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / mfc / database / daoview / optionsd.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-03-27  |  1.2 KB  |  47 lines

  1. // OptionsD.h : header 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.  
  13. /////////////////////////////////////////////////////////////////////////////
  14. // COptionsDlg dialog
  15.  
  16. class COptionsDlg : public CPropertyPage
  17. {
  18. // Construction
  19. public:
  20.     COptionsDlg(UINT nIDCaption = 0);   // standard constructor
  21.  
  22. // Dialog Data
  23.     //{{AFX_DATA(COptionsDlg)
  24.     enum { IDD = IDD_DLGOPTIONS };
  25.     BOOL    m_bShowSystemObjects;
  26.     BOOL    m_bShowWarnings;
  27.     BOOL    m_bOpenODBC;
  28.     UINT    m_nMaxRecords;
  29.     //}}AFX_DATA
  30.  
  31.  
  32. // Overrides
  33.     // ClassWizard generated virtual function overrides
  34.     //{{AFX_VIRTUAL(COptionsDlg)
  35.     protected:
  36.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  37.     //}}AFX_VIRTUAL
  38.  
  39. // Implementation
  40. protected:
  41.  
  42.     // Generated message map functions
  43.     //{{AFX_MSG(COptionsDlg)
  44.     //}}AFX_MSG
  45.     DECLARE_MESSAGE_MAP()
  46. };
  47.