Show.cpp
上传用户:hbytqc8
上传日期:2014-07-31
资源大小:527k
文件大小:1k
源码类别:

SNMP编程

开发平台:

Visual C++

  1. // Show.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "NetMap.h"
  5. #include "Show.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CShow dialog
  13. CShow::CShow(CWnd* pParent /*=NULL*/)
  14. : CDialog(CShow::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(CShow)
  17. m_descr = _T("");
  18. m_localport = _T("");
  19. m_remotelocal = _T("");
  20. m_ip = _T("");
  21. //}}AFX_DATA_INIT
  22. }
  23. void CShow::DoDataExchange(CDataExchange* pDX)
  24. {
  25. CDialog::DoDataExchange(pDX);
  26. //{{AFX_DATA_MAP(CShow)
  27. DDX_Text(pDX, IDC_EDIT1, m_descr);
  28. DDX_Text(pDX, IDC_EDIT2, m_localport);
  29. DDX_Text(pDX, IDC_EDIT3, m_remotelocal);
  30. DDX_Text(pDX, IDC_EDIT4, m_ip);
  31. //}}AFX_DATA_MAP
  32. }
  33. BEGIN_MESSAGE_MAP(CShow, CDialog)
  34. //{{AFX_MSG_MAP(CShow)
  35. // NOTE: the ClassWizard will add message map macros here
  36. //}}AFX_MSG_MAP
  37. END_MESSAGE_MAP()
  38. /////////////////////////////////////////////////////////////////////////////
  39. // CShow message handlers