Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

67 lines
1.8 KiB

  1. // enterdlg.cpp : implementation file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 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. /***********************************************************
  23. Function:
  24. Arguments:
  25. Return:
  26. Purpose:
  27. Author(s):
  28. Revision:
  29. Date:
  30. ***********************************************************/
  31. CEnterDlg::CEnterDlg(CWnd* pParent /*=NULL*/)
  32. : CDialog(CEnterDlg::IDD, pParent)
  33. {
  34. //{{AFX_DATA_INIT(CEnterDlg)
  35. m_strInput = "";
  36. //}}AFX_DATA_INIT
  37. }
  38. /***********************************************************
  39. Function:
  40. Arguments:
  41. Return:
  42. Purpose:
  43. Author(s):
  44. Revision:
  45. Date:
  46. ***********************************************************/
  47. void CEnterDlg::DoDataExchange(CDataExchange* pDX)
  48. {
  49. CDialog::DoDataExchange(pDX);
  50. //{{AFX_DATA_MAP(CEnterDlg)
  51. DDX_Text(pDX, IDC_EDIT1, m_strInput);
  52. //}}AFX_DATA_MAP
  53. }
  54. BEGIN_MESSAGE_MAP(CEnterDlg, CDialog)
  55. //{{AFX_MSG_MAP(CEnterDlg)
  56. //}}AFX_MSG_MAP
  57. END_MESSAGE_MAP()
  58. /////////////////////////////////////////////////////////////////////////////
  59. // CEnterDlg message handlers