mysheet.h
上传用户:jsxglz
上传日期:2007-01-03
资源大小:117k
文件大小:1k
源码类别:

SQL Server

开发平台:

Visual C++

  1. // MySheet.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. // CMyPropertySheet
  14. class CMyPropertySheet : public CPropertySheet
  15. {
  16. DECLARE_DYNAMIC(CMyPropertySheet)
  17. // Construction
  18. public:
  19. CMyPropertySheet(UINT nIDCaption, CWnd* pParentWnd = NULL,
  20. UINT iSelectPage = 0);
  21. CMyPropertySheet(LPCTSTR pszCaption, CWnd* pParentWnd = NULL,
  22. UINT iSelectPage = 0);
  23. // Attributes
  24. public:
  25. BOOL m_bCursorLib;
  26. // Operations
  27. public:
  28. // Overrides
  29. // ClassWizard generated virtual function overrides
  30. //{{AFX_VIRTUAL(CMyPropertySheet)
  31. public:
  32. virtual BOOL OnInitDialog();
  33. //}}AFX_VIRTUAL
  34. // Implementation
  35. public:
  36. virtual ~CMyPropertySheet();
  37. // Generated message map functions
  38. protected:
  39. void OnOK();
  40. //{{AFX_MSG(CMyPropertySheet)
  41. //}}AFX_MSG
  42. DECLARE_MESSAGE_MAP()
  43. private:
  44. CStatic m_static;
  45. };
  46. /////////////////////////////////////////////////////////////////////////////