home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic 5 Developer's Kit / vb5 dev kit.iso / dev / mailx6 / _setup.2 / Group7 / PSheet.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-05-06  |  1.1 KB  |  52 lines

  1. // MyPropertySheet.h : header file
  2. //
  3. // This class defines custom modal property sheet 
  4. // CMyPropertySheet.
  5.  
  6. #ifndef __MYPROPERTYSHEET_H__
  7. #define __MYPROPERTYSHEET_H__
  8.  
  9. #include "PPage1.h"
  10.  
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CMyPropertySheet
  13.  
  14. class CMyPropertySheet : public CPropertySheet
  15. {
  16.     DECLARE_DYNAMIC(CMyPropertySheet)
  17.  
  18. // Construction
  19. public:
  20.     CMyPropertySheet(CWnd* pParentWnd = NULL);
  21.  
  22. // Attributes
  23. public:
  24.     CMyPropertyPage1 m_Page1;
  25.     CMyPropertyPage2 m_Page2;
  26.     CMyPropertyPage3 m_Page3;
  27.     CMyPropertyPage4 m_Page4;
  28.     CMyPropertyPage5 m_Page5;
  29.  
  30. // Operations
  31. public:
  32.  
  33. // Overrides
  34.     // ClassWizard generated virtual function overrides
  35.     //{{AFX_VIRTUAL(CMyPropertySheet)
  36.     //}}AFX_VIRTUAL
  37.  
  38. // Implementation
  39. public:
  40.     virtual ~CMyPropertySheet();
  41.  
  42. // Generated message map functions
  43. protected:
  44.     //{{AFX_MSG(CMyPropertySheet)
  45.         // NOTE - the ClassWizard will add and remove member functions here.
  46.     //}}AFX_MSG
  47.     DECLARE_MESSAGE_MAP()
  48. };
  49.  
  50. /////////////////////////////////////////////////////////////////////////////
  51.  
  52. #endif    // __MYPROPERTYSHEET_H__