ENTERDLG.CPP
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // enterdlg.cpp : implementation file
  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. #include "stdafx.h"
  13. #include "viewex.h"
  14. #include "enterdlg.h"
  15. #ifdef _DEBUG
  16. #undef THIS_FILE
  17. static char BASED_CODE THIS_FILE[] = __FILE__;
  18. #endif
  19. /////////////////////////////////////////////////////////////////////////////
  20. // CEnterDlg dialog
  21. IMPLEMENT_DYNAMIC(CEnterDlg, CDialog)
  22. CEnterDlg::CEnterDlg(CWnd* pParent /*=NULL*/)
  23. : CDialog(CEnterDlg::IDD, pParent)
  24. {
  25. //{{AFX_DATA_INIT(CEnterDlg)
  26. m_strInput = "";
  27. //}}AFX_DATA_INIT
  28. }
  29. void CEnterDlg::DoDataExchange(CDataExchange* pDX)
  30. {
  31. CDialog::DoDataExchange(pDX);
  32. //{{AFX_DATA_MAP(CEnterDlg)
  33. DDX_Text(pDX, IDC_EDIT1, m_strInput);
  34. //}}AFX_DATA_MAP
  35. }
  36. BEGIN_MESSAGE_MAP(CEnterDlg, CDialog)
  37. //{{AFX_MSG_MAP(CEnterDlg)
  38. //}}AFX_MSG_MAP
  39. END_MESSAGE_MAP()
  40. /////////////////////////////////////////////////////////////////////////////
  41. // CEnterDlg message handlers