CntrlOtherPrcssDlg.cpp
上传用户:xsxdsb
上传日期:2009-12-14
资源大小:672k
文件大小:6k
源码类别:

书籍源码

开发平台:

Visual C++

  1. // CntrlOtherPrcssDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "CntrlOtherPrcss.h"
  5. #include "CntrlOtherPrcssDlg.h"
  6. #include "winbase.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CAboutDlg dialog used for App About
  14. class CAboutDlg : public CDialog
  15. {
  16. public:
  17. CAboutDlg();
  18. // Dialog Data
  19. //{{AFX_DATA(CAboutDlg)
  20. enum { IDD = IDD_ABOUTBOX };
  21. //}}AFX_DATA
  22. // ClassWizard generated virtual function overrides
  23. //{{AFX_VIRTUAL(CAboutDlg)
  24. protected:
  25. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  26. //}}AFX_VIRTUAL
  27. // Implementation
  28. protected:
  29. //{{AFX_MSG(CAboutDlg)
  30. //}}AFX_MSG
  31. DECLARE_MESSAGE_MAP()
  32. };
  33. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  34. {
  35. //{{AFX_DATA_INIT(CAboutDlg)
  36. //}}AFX_DATA_INIT
  37. }
  38. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  39. {
  40. CDialog::DoDataExchange(pDX);
  41. //{{AFX_DATA_MAP(CAboutDlg)
  42. //}}AFX_DATA_MAP
  43. }
  44. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  45. //{{AFX_MSG_MAP(CAboutDlg)
  46. // No message handlers
  47. //}}AFX_MSG_MAP
  48. END_MESSAGE_MAP()
  49. /////////////////////////////////////////////////////////////////////////////
  50. // CCntrlOtherPrcssDlg dialog
  51. CCntrlOtherPrcssDlg::CCntrlOtherPrcssDlg(CWnd* pParent /*=NULL*/)
  52. : CDialog(CCntrlOtherPrcssDlg::IDD, pParent)
  53. {
  54. //{{AFX_DATA_INIT(CCntrlOtherPrcssDlg)
  55. //}}AFX_DATA_INIT
  56. // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  57. m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  58. m_hPro=NULL;
  59. }
  60. void CCntrlOtherPrcssDlg::DoDataExchange(CDataExchange* pDX)
  61. {
  62. CDialog::DoDataExchange(pDX);
  63. //{{AFX_DATA_MAP(CCntrlOtherPrcssDlg)
  64. //}}AFX_DATA_MAP
  65. }
  66. BEGIN_MESSAGE_MAP(CCntrlOtherPrcssDlg, CDialog)
  67. //{{AFX_MSG_MAP(CCntrlOtherPrcssDlg)
  68. ON_WM_SYSCOMMAND()
  69. ON_WM_PAINT()
  70. ON_WM_QUERYDRAGICON()
  71. ON_BN_CLICKED(IDC_START, OnStart)
  72. ON_BN_CLICKED(IDC_STOP, OnStop)
  73. //}}AFX_MSG_MAP
  74. END_MESSAGE_MAP()
  75. /////////////////////////////////////////////////////////////////////////////
  76. // CCntrlOtherPrcssDlg message handlers
  77. BOOL CCntrlOtherPrcssDlg::OnInitDialog()
  78. {
  79. CDialog::OnInitDialog();
  80. // Add "About..." menu item to system menu.
  81. // IDM_ABOUTBOX must be in the system command range.
  82. ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
  83. ASSERT(IDM_ABOUTBOX < 0xF000);
  84. CMenu* pSysMenu = GetSystemMenu(FALSE);
  85. if (pSysMenu != NULL)
  86. {
  87. CString strAboutMenu;
  88. strAboutMenu.LoadString(IDS_ABOUTBOX);
  89. if (!strAboutMenu.IsEmpty())
  90. {
  91. pSysMenu->AppendMenu(MF_SEPARATOR);
  92. pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
  93. }
  94. }
  95. // Set the icon for this dialog.  The framework does this automatically
  96. //  when the application's main window is not a dialog
  97. SetIcon(m_hIcon, TRUE); // Set big icon
  98. SetIcon(m_hIcon, FALSE); // Set small icon
  99. // TODO: Add extra initialization here
  100. return TRUE;  // return TRUE  unless you set the focus to a control
  101. }
  102. void CCntrlOtherPrcssDlg::OnSysCommand(UINT nID, LPARAM lParam)
  103. {
  104. if ((nID & 0xFFF0) == IDM_ABOUTBOX)
  105. {
  106. CAboutDlg dlgAbout;
  107. dlgAbout.DoModal();
  108. }
  109. else
  110. {
  111. CDialog::OnSysCommand(nID, lParam);
  112. }
  113. }
  114. // If you add a minimize button to your dialog, you will need the code below
  115. //  to draw the icon.  For MFC applications using the document/view model,
  116. //  this is automatically done for you by the framework.
  117. void CCntrlOtherPrcssDlg::OnPaint() 
  118. {
  119. if (IsIconic())
  120. {
  121. CPaintDC dc(this); // device context for painting
  122. SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  123. // Center icon in client rectangle
  124. int cxIcon = GetSystemMetrics(SM_CXICON);
  125. int cyIcon = GetSystemMetrics(SM_CYICON);
  126. CRect rect;
  127. GetClientRect(&rect);
  128. int x = (rect.Width() - cxIcon + 1) / 2;
  129. int y = (rect.Height() - cyIcon + 1) / 2;
  130. // Draw the icon
  131. dc.DrawIcon(x, y, m_hIcon);
  132. }
  133. else
  134. {
  135. CDialog::OnPaint();
  136. }
  137. }
  138. // The system calls this to obtain the cursor to display while the user drags
  139. //  the minimized window.
  140. HCURSOR CCntrlOtherPrcssDlg::OnQueryDragIcon()
  141. {
  142. return (HCURSOR) m_hIcon;
  143. }
  144. void CCntrlOtherPrcssDlg::OnStart() 
  145. {
  146. PROCESS_INFORMATION pi;
  147. STARTUPINFO si;
  148. //初始化变量
  149. memset(&si,0,sizeof(si));
  150. si.cb=sizeof(si);
  151. si.wShowWindow=SW_SHOW;
  152. si.dwFlags=STARTF_USESHOWWINDOW;
  153. //打开记事本程序
  154. BOOL fRet=CreateProcess(NULL,
  155. "c:\windows\notepad.exe c:\autoexec.bat",
  156. NULL,
  157. NULL,
  158. FALSE,
  159. NORMAL_PRIORITY_CLASS|CREATE_NEW_CONSOLE,
  160. NULL,
  161. NULL,
  162. &si,
  163. &pi);
  164. if(!fRet)
  165. {//创建失败,显示错误信息
  166. LPVOID lpMsgBuf;
  167. FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER | 
  168. FORMAT_MESSAGE_FROM_SYSTEM | 
  169. FORMAT_MESSAGE_IGNORE_INSERTS,
  170. NULL,
  171. GetLastError(),
  172. MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), // Default language
  173. (LPTSTR) &lpMsgBuf,
  174. 0,
  175. NULL );
  176. AfxMessageBox( (LPCTSTR)lpMsgBuf);
  177. LocalFree( lpMsgBuf );
  178. }
  179. else
  180. {
  181. AfxMessageBox("CreateProcess成功");
  182. m_hPro=pi.hProcess;
  183. }
  184. }
  185. void CCntrlOtherPrcssDlg::OnStop() 
  186. {
  187. //判断进程句柄是否合法
  188. if(m_hPro)
  189. {
  190. //根据句柄,终止刚才打开的记事本程序
  191. if(!TerminateProcess(m_hPro,0))
  192. {
  193. //终止出现错误,显示错误信息
  194. LPVOID lpMsgBuf;
  195. FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER | 
  196. FORMAT_MESSAGE_FROM_SYSTEM | 
  197. FORMAT_MESSAGE_IGNORE_INSERTS,
  198. NULL,
  199. GetLastError(),
  200. MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), // Default language
  201. (LPTSTR) &lpMsgBuf,
  202. 0,
  203. NULL );
  204. AfxMessageBox( (LPCTSTR)lpMsgBuf);
  205. LocalFree( lpMsgBuf );
  206. }
  207. else
  208. {
  209. AfxMessageBox("TerminateProcess成功");
  210. }
  211. m_hPro=NULL;
  212. }
  213. else
  214. {
  215. AfxMessageBox("m_hPro为空");
  216. }
  217. }