How to open Excel-workbooks without the message The workbook contains links to other data sources. programmatically?

做~自己de王妃 提交于 2019-12-02 08:33:07

try placing in the workbook Open event handler:

Application.AskToUpdateLinks = False

I don't think you can get around the dialogs with the excel interop libraries (the warnings are there for a reason). The way I've always done this in the past is to treat the Excel file like it's a database, and use the following:

OleDbConnection connection = new OleDbConnection(@"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" + excelFileName + ";Extended Properties=\"Excel 12.0 Xml;HDR=YES\"");

Then you can use the following to get information about the sheets:

DataTable lookupSheets = connection.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, null);

Then use the debugger to understand what is behind the lookupSheets variable and start writing queries like you would with any other database.

Note: You cannot use the richer elements of the interop libraries like formatting

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!