C#结束Excel进程的步骤教学
程序员文章站
2023-11-29 15:24:34
程序中,系统自带的回收功能无法马上结束excel进程,需要自己编写程序。
1、项目中,引用添加office com组件
2、引用接口
3、在程序中 添加代码...
程序中,系统自带的回收功能无法马上结束excel进程,需要自己编写程序。
1、项目中,引用添加office com组件
2、引用接口
3、在程序中 添加代码
[dllimport("user32.dll", charset = charset.auto)]
public static extern int getwindowthreadprocessid(intptr hwnd, out int id);
4、停止excel应用,这一步不会马上结束excel进程,但是需要写
5、立即结束excel进程