home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 1999 January / dppcpro0199a.iso / January / Fp98 / SDK / WebBot / simple / SimpleDialog.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1997-09-18  |  1.1 KB  |  49 lines

  1. //
  2. // Copyright (c) 1996 Vermeer Technologies, Inc., a wholly owned
  3. //               subsidiary of Microsoft Corp.  All Rights Reserved
  4. //
  5. // File: SimpleDialog.cpp
  6. // Dialog Implementation File
  7. //
  8.  
  9. #include "stdafx.h"
  10. #include "simple.h"
  11. #include "SimpleDialog.h"
  12.  
  13. #ifdef _DEBUG
  14. #define new DEBUG_NEW
  15. #undef THIS_FILE
  16. static char THIS_FILE[] = __FILE__;
  17. #endif
  18.  
  19. /////////////////////////////////////////////////////////////////////////////
  20. // CSimpleDialog dialog
  21.  
  22.  
  23. CSimpleDialog::CSimpleDialog(CWnd* pParent /*=NULL*/)
  24.     : CDialog(CSimpleDialog::IDD, pParent)
  25. {
  26.     //{{AFX_DATA_INIT(CSimpleDialog)
  27.     m_edit = _T("");
  28.     //}}AFX_DATA_INIT
  29. }
  30.  
  31.  
  32. void CSimpleDialog::DoDataExchange(CDataExchange* pDX)
  33. {
  34.     CDialog::DoDataExchange(pDX);
  35.     //{{AFX_DATA_MAP(CSimpleDialog)
  36.     DDX_Text(pDX, IDC_EDIT1, m_edit);
  37.     //}}AFX_DATA_MAP
  38. }
  39.  
  40.  
  41. BEGIN_MESSAGE_MAP(CSimpleDialog, CDialog)
  42.     //{{AFX_MSG_MAP(CSimpleDialog)
  43.         // NOTE: the ClassWizard will add message map macros here
  44.     //}}AFX_MSG_MAP
  45. END_MESSAGE_MAP()
  46.  
  47. /////////////////////////////////////////////////////////////////////////////
  48. // CSimpleDialog message handlers
  49.