ServiceManageEditDlg.cpp
上传用户:cjw5120
上传日期:2022-05-11
资源大小:5032k
文件大小:2k
源码类别:

网络截获/分析

开发平台:

Visual C++

  1. // ServiceManageEditDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "MyClient.h"
  5. #include "ServiceManageEditDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /*
  12.  作者:海啸 lyyer English Name: Jack 
  13.   blog:http://lyyer.blog.sohu.com
  14.   website:http://www.cnGSG.com
  15.   海啸网络安全组织
  16. */
  17. /////////////////////////////////////////////////////////////////////////////
  18. // CServiceManageEditDlg dialog
  19. CServiceManageEditDlg::CServiceManageEditDlg(CWnd* pParent /*=NULL*/)
  20. : CDialog(CServiceManageEditDlg::IDD, pParent)
  21. {
  22. //{{AFX_DATA_INIT(CServiceManageEditDlg)
  23. //}}AFX_DATA_INIT
  24. }
  25. void CServiceManageEditDlg::DoDataExchange(CDataExchange* pDX)
  26. {
  27. CDialog::DoDataExchange(pDX);
  28. //{{AFX_DATA_MAP(CServiceManageEditDlg)
  29. DDX_Control(pDX, IDC_COMBO2, m_combox_autoload);
  30. DDX_Control(pDX, IDC_COMBO1, m_combox_state);
  31. //}}AFX_DATA_MAP
  32. }
  33. BEGIN_MESSAGE_MAP(CServiceManageEditDlg, CDialog)
  34. //{{AFX_MSG_MAP(CServiceManageEditDlg)
  35. //}}AFX_MSG_MAP
  36. END_MESSAGE_MAP()
  37. /////////////////////////////////////////////////////////////////////////////
  38. // CServiceManageEditDlg message handlers
  39. BOOL CServiceManageEditDlg::OnInitDialog()
  40. {
  41. CDialog::OnInitDialog();
  42.  
  43.     SetDlgItemText(IDC_STATIC_NAME,ServiceName);
  44. SetDlgItemText(IDC_STATIC_STATE,ServiceState);
  45. SetDlgItemText(IDC_STATIC_STARTTYPE,ServiceStartType);
  46. /*
  47.     m_combox_state.AddString("启动");
  48. m_combox_state.AddString("停用");
  49. m_combox_autoload.AddString("自动");
  50.     m_combox_autoload.AddString("手动");
  51. m_combox_autoload.AddString("停用");
  52. */
  53. return TRUE;
  54. }
  55. //DEL void CServiceManageEditDlg::OnDblclkCombo1() 
  56. //DEL {
  57. //DEL  // TODO: Add your control notification handler code here
  58. //DEL     CString m_state;
  59. //DEL  m_combox_state.GetLBText(m_combox_state.GetCurSel(),m_state);
  60. //DEL 
  61. //DEL }