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

SNMP编程

开发平台:

C/C++

  1. // DlgSet.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "oam.h"
  5. #include "DlgSet.h"
  6. //#include "OAMDoc.h"
  7. #include "MainFrm.h"
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CDlgSet dialog
  15. CDlgSet::CDlgSet(CWnd* pParent /*=NULL*/)
  16. : CDialog(CDlgSet::IDD, pParent)
  17. {
  18. //{{AFX_DATA_INIT(CDlgSet)
  19. m_sValue = _T("");
  20. //}}AFX_DATA_INIT
  21. }
  22. void CDlgSet::DoDataExchange(CDataExchange* pDX)
  23. {
  24. CDialog::DoDataExchange(pDX);
  25. //{{AFX_DATA_MAP(CDlgSet)
  26. DDX_Control(pDX, IDC_OID, m_COid);
  27. DDX_Text(pDX, IDC_VALUE, m_sValue);
  28. //}}AFX_DATA_MAP
  29. }
  30. BEGIN_MESSAGE_MAP(CDlgSet, CDialog)
  31. //{{AFX_MSG_MAP(CDlgSet)
  32. //}}AFX_MSG_MAP
  33. END_MESSAGE_MAP()
  34. /////////////////////////////////////////////////////////////////////////////
  35. // CDlgSet message handlers
  36. BOOL CDlgSet::OnInitDialog() 
  37. {
  38. CDialog::OnInitDialog();
  39.      CWnd* pStatic = GetDlgItem(IDC_OID);
  40. CString str1;
  41. pMain->m_wndAddress.GetWindowText(str1);
  42. str1=str1+_T(".") + "0"; 
  43. pStatic->SetWindowText(str1);
  44. return TRUE;  // return TRUE unless you set the focus to a control
  45.               // EXCEPTION: OCX Property Pages should return FALSE
  46. }