本文介绍了如何在c#中动态关闭excel文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我无法关闭raj4.xls文件。它在'工作簿'中引发错误,指出'你错过了使用指令还是程序集引用?'。这个代码是否正确关闭我的excel文件?



I am unable to close my 'raj4.xls' file. It throws an error at 'workbooks' stating 'are you missing a using directive or an assembly reference?'. Is this code correct to close my excel file?

ExcelApp.ActiveWorkbook.SaveCopyAs("C:\\Users\\RAJENDRAN\\Desktop\\raj4.xls");
             ExcelApp.ActiveWorkbook.Saved = true;
             object fileName = "C:\\Users\\RAJENDRAN\\Desktop\\raj4.xls";
             Excel.Workbook workbook = this.Application.Workbooks.get_Item(fileName);
             workbook.Close(false);
             ExcelApp.Quit();

推荐答案


这篇关于如何在c#中动态关闭excel文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-23 21:13