home *** CD-ROM | disk | FTP | other *** search
/ Building OCXs / Building_OCXs_Que_1995.iso / code / ch09 / commppg.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-12-14  |  711 b   |  32 lines

  1. // commppg.h : Declaration of the CCommPropPage property page class.
  2.  
  3. ////////////////////////////////////////////////////////////////////////////
  4. // CCommPropPage : See commppg.cpp for implementation.
  5.  
  6. class CCommPropPage : public COlePropertyPage
  7. {
  8.     DECLARE_DYNCREATE(CCommPropPage)
  9.     DECLARE_OLECREATE_EX(CCommPropPage)
  10.  
  11. // Constructor
  12. public:
  13.     CCommPropPage();
  14.  
  15. // Dialog Data
  16.     //{{AFX_DATA(CCommPropPage)
  17.     enum { IDD = IDD_PROPPAGE_COMM };
  18.     CString    m_phoneNumber;
  19.     //}}AFX_DATA
  20.  
  21. // Implementation
  22. protected:
  23.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  24.  
  25. // Message maps
  26. protected:
  27.     //{{AFX_MSG(CCommPropPage)
  28.     //}}AFX_MSG
  29.     DECLARE_MESSAGE_MAP()
  30.  
  31. };
  32.