在 Windows CE 中使用 CreateProcess 启动的应用程序不会作为应用程序显示在任务管理器中
我使用 CreateProcess() 调用从 C++ dll 启动 Windows CE 3.0 中的应用程序。启动的应用程序根据要求运行。但该应用程序并未在任务管理器中作为应用程序列出。仅当任务管理器的设置更改为显示所有进程时才能看到。
如何使启动的进程在任务管理器中显示为应用程序?
(我使用的是windows mobile 6.1,要启动的应用程序是ac#.net CF应用程序)
I launch an application in windows CE 3.0 from a C++ dll using the CreateProcess() call. The application that is launched runs as per requirement. But this application is not listed in the task manager as an application. It is only seen when the settings of task manager is changed to show all processes.
How can i make the process launched appear as an application in task manager?
(I am using windows mobile 6.1, and the application to be launched is a c# .net CF application)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要出现在 Windows CE 任务管理器中,应用程序必须具有可见窗口。我使用 CreateProcess() 启动我的 C# 应用程序,它确实出现在任务管理器中(我使用的是 Windows CE 6.0):
To appear in the windows CE task manager the application must have a visible window. I use CreateProcess() to launch my C# app and it does appear in the task manager (I'm using windows CE 6.0):