home *** CD-ROM | disk | FTP | other *** search
/ Master Visual C++ 1.5 / MASTERVC15.ISO / vcprog / original / ch35 / testvbx / testvvw.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1994-01-10  |  1017 b   |  47 lines

  1. // testvvw.cpp : implementation file
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "testvbx.h"
  6. #include "testvvw.h"
  7.  
  8. #ifdef _DEBUG
  9. #undef THIS_FILE
  10. static char BASED_CODE THIS_FILE[] = __FILE__;
  11. #endif
  12.  
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CTestvbxView
  15.  
  16. IMPLEMENT_DYNCREATE(CTestvbxView, CFormView)
  17.  
  18. CTestvbxView::CTestvbxView()
  19.     : CFormView(CTestvbxView::IDD)
  20. {
  21.     //{{AFX_DATA_INIT(CTestvbxView)
  22.         // NOTE: the ClassWizard will add member initialization here
  23.     //}}AFX_DATA_INIT
  24. }
  25.  
  26. CTestvbxView::~CTestvbxView()
  27. {
  28. }
  29.  
  30. void CTestvbxView::DoDataExchange(CDataExchange* pDX)
  31. {
  32.     CFormView::DoDataExchange(pDX);
  33.     //{{AFX_DATA_MAP(CTestvbxView)
  34.         // NOTE: the ClassWizard will add DDX and DDV calls here
  35.     //}}AFX_DATA_MAP
  36. }
  37.  
  38.  
  39. BEGIN_MESSAGE_MAP(CTestvbxView, CFormView)
  40.     //{{AFX_MSG_MAP(CTestvbxView)
  41.     //}}AFX_MSG_MAP
  42. END_MESSAGE_MAP()
  43.  
  44.  
  45. /////////////////////////////////////////////////////////////////////////////
  46. // CTestvbxView message handlers
  47.