home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / mfc / database / daoctl / accspict / accsppg.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-03-27  |  1.2 KB  |  45 lines

  1. // AccsPpg.h : Declaration of the CAccessPictPropPage property page class.
  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. // CAccessPictPropPage : See AccsPpg.cpp.cpp for implementation.
  15.  
  16. class CAccessPictPropPage : public COlePropertyPage
  17. {
  18.     DECLARE_DYNCREATE(CAccessPictPropPage)
  19.     DECLARE_OLECREATE_EX(CAccessPictPropPage)
  20.  
  21. // Constructor
  22. public:
  23.     CAccessPictPropPage();
  24.  
  25. // Dialog Data
  26.     //{{AFX_DATA(CAccessPictPropPage)
  27.     enum { IDD = IDD_PROPPAGE_ACCESSPICT };
  28.     BOOL    m_bStretch;
  29.     BOOL    m_bPreserve;
  30.     CString m_strCaption;
  31.     //}}AFX_DATA
  32.  
  33. // Implementation
  34. protected:
  35.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  36.  
  37. // Message maps
  38. protected:
  39.     //{{AFX_MSG(CAccessPictPropPage)
  40.     afx_msg void OnStretch();
  41.     //}}AFX_MSG
  42.     DECLARE_MESSAGE_MAP()
  43.  
  44. };
  45.