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

Windows编程

开发平台:

Visual C++

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