gpt4 book ai didi

c# - 获取excel应用进程id

转载 作者:太空狗 更新时间:2023-10-29 17:29:04 28 4
gpt4 key购买 nike

我正在使用 C# 创建一个 Excel 应用程序。因为我会紧急维护 excel 文件,所以我想保持它的处理程序打开。我想保留 excel 进程 ID,以便在系统崩溃时能够终止它。

创建时如何获取Excel Pid?

最佳答案

using Excel = Microsoft.Office.Interop.Excel;
using System.Runtime.InteropServices;
using System.Diagnostics;

class Sample
{
[DllImport("user32.dll")]
static extern int GetWindowThreadProcessId(int hWnd, out int lpdwProcessId);

Process GetExcelProcess(Excel.Application excelApp)
{
int id;
GetWindowThreadProcessId(excelApp.Hwnd, out id);
return Process.GetProcessById(id);
}
}

关于c# - 获取excel应用进程id,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8490564/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com