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

SNMP编程

开发平台:

C/C++

  1. // AdressComboBox.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "oam.h"
  5. #include "AdressComboBox.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CAdressComboBox
  13. CAdressComboBox::CAdressComboBox()
  14. {
  15. }
  16. CAdressComboBox::~CAdressComboBox()
  17. {
  18. }
  19. BEGIN_MESSAGE_MAP(CAdressComboBox, CComboBox)
  20. //{{AFX_MSG_MAP(CAdressComboBox)
  21. // NOTE - the ClassWizard will add and remove mapping macros here.
  22. //}}AFX_MSG_MAP
  23. END_MESSAGE_MAP()
  24. /////////////////////////////////////////////////////////////////////////////
  25. // CAdressComboBox message handlers
  26. BOOL CAdressComboBox::AddNewAdress(LPCSTR str)
  27. {
  28. int nFound = FindStringExact(-1, str);
  29. if (nFound == CB_ERR)
  30. {
  31. InsertString(0, str);
  32. SetCurSel(0);
  33. }
  34. else
  35. SetCurSel(nFound);
  36. /* int nFound = FindStringExact(-1, str);
  37. if (nFound == CB_ERR)
  38. {
  39. COMBOBOXEXITEM item;
  40. item.mask = CBEIF_TEXT;
  41. item.iItem = -1;
  42. item.pszText = (LPTSTR)(LPCTSTR)str;
  43. int index = InsertItem(&item);
  44. if(index != -1)
  45. SetCurSel(index);
  46. else
  47. return FALSE;
  48. }
  49. else
  50. SetCurSel(nFound);
  51. */ return TRUE;
  52. }