码迷,mamicode.com
首页 > Windows程序 > 详细

windows process count

时间:2018-11-02 10:17:39      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:cli   分享图片   reac   time   dll   use   foreach   info   width   

In order to get the count of "Word" process, you can refer to the steps as follow.

First, you need to use "System.Runtime.InteropServices", then add .dll "Microsoft.Office.Interop.Word" from "NuGet". The specific operation is as follows:

Click "Manage NuGet Packages..." and type "Microsoft.Office.Interop.Word" in the search bar and download it.

 技术分享图片

技术分享图片

Then, You can use the following code to implement it.

int count = 0;
try
{
    Microsoft.Office.Interop.Word.Application winObj = (Microsoft.Office.Interop.Word.Application)Marshal.GetActiveObject("Word.Application");
    foreach (var item in winObj.Documents) // or winObj.Documents.Count
    {
        count++;
    }
}
catch (System.Runtime.InteropServices.COMException)
{
    count = 0;
}
textBox1.Text = count.ToString();

You can implement how to get count of all processes by using the following code.

Process[] pros = Process.GetProcesses();
int count = 0;
foreach (Process pro in pros)
{
    count++;
}
textBox1.Text = count.ToString();

windows process count

标签:cli   分享图片   reac   time   dll   use   foreach   info   width   

原文地址:https://www.cnblogs.com/jizhiqiliao/p/9894329.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!