home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / mfc / database / catalog2 / colpage.h < prev    next >
C/C++ Source or Header  |  1998-03-26  |  1KB  |  50 lines

  1. // ColumnPage.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. // CColumnPage dialog
  15.  
  16. class CColumnPage : public CPropertyPage
  17. {
  18.     DECLARE_DYNCREATE(CColumnPage)
  19.  
  20. // Construction
  21. public:
  22.     CColumnPage();
  23.     ~CColumnPage();
  24.  
  25. // Dialog Data
  26.     //{{AFX_DATA(CColumnPage)
  27.     enum { IDD = IDD_COLUMNPAGE };
  28.     BOOL    m_bLength;
  29.     BOOL    m_bNullability;
  30.     BOOL    m_bPrecision;
  31.     //}}AFX_DATA
  32.  
  33.  
  34. // Overrides
  35.     // ClassWizard generate virtual function overrides
  36.     //{{AFX_VIRTUAL(CColumnPage)
  37.     protected:
  38.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  39.     //}}AFX_VIRTUAL
  40.  
  41. // Implementation
  42. protected:
  43.     // Generated message map functions
  44.     //{{AFX_MSG(CColumnPage)
  45.         // NOTE: the ClassWizard will add member functions here
  46.     //}}AFX_MSG
  47.     DECLARE_MESSAGE_MAP()
  48.  
  49. };
  50.