home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / Basic / Visual Basic.60 / COMMON / TOOLS / VCM / VCM.MDB / VcmComponentContainer / 14_Cabinet / OPTIONDG.H < prev    next >
Encoding:
C/C++ Source or Header  |  1998-05-18  |  1.2 KB  |  52 lines

  1. // OptionsDlg.h : header file
  2. //
  3. // This is a part of the Microsoft Foundation Classes and
  4. // Templates (MFC&T).
  5. // Copyright (C) 1998 Microsoft Corporation
  6. // All rights reserved.
  7. //
  8. // This source code is only intended as a supplement to the
  9. // MFC&T Reference and related electronic documentation provided
  10. // with the library.  See these sources for detailed information
  11. // regarding the MFC&T product.
  12. //
  13.  
  14. /////////////////////////////////////////////////////////////////////////////
  15. // COptionsDlg dialog
  16.  
  17. class COptionsDlg : public CPropertyPage
  18. {
  19.     DECLARE_DYNCREATE(COptionsDlg)
  20.  
  21. // Construction
  22. public:
  23.     COptionsDlg();
  24.     ~COptionsDlg();
  25.  
  26. // Dialog Data
  27.     //{{AFX_DATA(COptionsDlg)
  28.     enum { IDD = IDD_DLGOPTIONS };
  29.     BOOL    m_bOpenODBC;
  30.     BOOL    m_bShowSystemObjects;
  31.     BOOL    m_bShowWarnings;
  32.     UINT    m_nMaxRecords;
  33.     //}}AFX_DATA
  34.  
  35.  
  36. // Overrides
  37.     // ClassWizard generate virtual function overrides
  38.     //{{AFX_VIRTUAL(COptionsDlg)
  39.     protected:
  40.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  41.     //}}AFX_VIRTUAL
  42.  
  43. // Implementation
  44. protected:
  45.     // Generated message map functions
  46.     //{{AFX_MSG(COptionsDlg)
  47.         // NOTE: the ClassWizard will add member functions here
  48.     //}}AFX_MSG
  49.     DECLARE_MESSAGE_MAP()
  50.  
  51. };
  52.