标签:style blog http color os 使用 io for 文件
1 publicstaticvoid KillProcess(string processName) 2 { 3 system.Diagnostics.Process myproc = new system.Diagnostics.Process(); //得到所有打开的进程 4 5 try 6 { 7 8 foreach (Process thisproc in Process.GetProcessesByName(processName)) 9 10 { if (!thisproc.CloseMainWindow()) 11 12 { 13 14 if(thisproc!=null) 15 16 thisproc.Kill(); 17 18 } } 19 20 } 21 22 catch (Exception Exc) 23 24 { throw Exc; } 25 26 }
在操作完Excel后,调用杀死进程方法就可以了,下一次就会正常调用
转载自http://wallimn.iteye.com/blog/660322,非常感谢。
Asp.Net中Word,Excel等office com组件操作权限的问题
标签:style blog http color os 使用 io for 文件
原文地址:http://www.cnblogs.com/xiaosehu/p/3941974.html