ChangeAgent.cpp
上传用户:lvjun8202
上传日期:2013-04-30
资源大小:797k
文件大小:2k
源码类别:

SNMP编程

开发平台:

C/C++

  1. // ChangeAgent.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "oam.h"
  5. #include "ChangeAgent.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CChangeAgent dialog
  13. CChangeAgent::CChangeAgent(CWnd* pParent /*=NULL*/)
  14. : CDialog(CChangeAgent::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(CChangeAgent)
  17. m_agent = _T("");
  18. m_community = _T("");
  19. //}}AFX_DATA_INIT
  20. }
  21. void CChangeAgent::DoDataExchange(CDataExchange* pDX)
  22. {
  23. CDialog::DoDataExchange(pDX);
  24. //{{AFX_DATA_MAP(CChangeAgent)
  25. DDX_Control(pDX, IDC_IPADDRESS_IP, m_agent1);
  26. DDX_Text(pDX, IDC_EDIT_IP, m_agent);
  27. DDX_Text(pDX, IDC_EDIT_COMMUNITY, m_community);
  28. DDX_Control(pDX, IDOK, m_btOk);
  29. DDX_Control(pDX, IDCANCEL, m_btCancel);
  30. //}}AFX_DATA_MAP
  31. }
  32. BEGIN_MESSAGE_MAP(CChangeAgent, CDialog)
  33. //{{AFX_MSG_MAP(CChangeAgent)
  34. //}}AFX_MSG_MAP
  35. END_MESSAGE_MAP()
  36. /////////////////////////////////////////////////////////////////////////////
  37. // CChangeAgent message handlers
  38. BOOL CChangeAgent::OnInitDialog() 
  39. {
  40. CDialog::OnInitDialog();
  41. GetDlgItem(IDC_EDIT_IP)->SetFocus();
  42. m_btOk.LoadAVI(IDR_AVI_OK);
  43. m_btCancel.LoadAVI(IDR_AVI_CANCEL);
  44. m_agent="172.18.90.99";
  45. m_community="public";
  46.     UpdateData(FALSE);
  47. // TODO: Add extra initialization here
  48. return TRUE;  // return TRUE unless you set the focus to a control
  49.               // EXCEPTION: OCX Property Pages should return FALSE
  50. }