使用C#和Excel 2010打开时如何在不获取格式警告的情况下保存Excel文件

时间:2012-05-08 12:13:05

标签: c# visual-studio-2010 excel format savefiledialog

我正在使用Excel 2010。 我正在尝试使用此代码保存我的excel文件。 它确实保存了.xls文件,但是当我打开文件时,我收到了这条消息:

  

您尝试打开的文件“tre.xls”的格式与文件扩展名指定的格式不同。在打开文件之前,请验证文件是否已损坏且来自受损源。你想现在打开文件吗?

如果按yes,文件将会打开。但是我需要摆脱这种格式弹出窗口?

我的代码:

using System;
using System.Windows.Forms;
using ExcelAddIn1.Classes;
using ExcelAddIn1.Classes.Config;
using Microsoft.Office.Interop.Excel;
using Application = Microsoft.Office.Interop.Excel.Application;
using System.Runtime.InteropServices;


private void Foo(object sender, EventArgs e)
{
    SaveFileDialog saveFileDialog = new SaveFileDialog();
    saveFileDialog.Filter = "Execl files (*.xls)|*.xls";
    saveFileDialog.FilterIndex = 0;
    saveFileDialog.RestoreDirectory = true;
    saveFileDialog.CreatePrompt = true;
    saveFileDialog.FileName = null;
    saveFileDialog.Title = "Save path of the file to be exported";

    if (saveFileDialog.ShowDialog() == DialogResult.OK)
    {
        // Save. 
        // The selected path can be got with saveFileDialog.FileName.ToString()
        Application excelObj = 
            (Application)Marshal.GetActiveObject("Excel.Application");
        Workbook wbook = excelObj.ActiveWorkbook;
        wbook.SaveAs(saveFileDialog.FileName, XlFileFormat.xlWorkbookDefault, 
            Type.Missing, Type.Missing, false, false, 
            XlSaveAsAccessMode.xlNoChange, Type.Missing, Type.Missing, 
            Type.Missing, Type.Missing, Type.Missing);
        wbook.Close();
    }
}

当我以正常的方式保存excel时,我得到“Book1.xlsx”,打开没有问题。

=============最终解决方案============

private void Foo(object sender, EventArgs e)
{
    SaveFileDialog saveFileDialog = new SaveFileDialog();
    saveFileDialog.Filter = "Execl files (*.xls)|*.xls";

    saveFileDialog.FilterIndex = 0;
    saveFileDialog.RestoreDirectory = true;
    saveFileDialog.CreatePrompt = true;
    saveFileDialog.FileName = null;
    saveFileDialog.Title = "Save path of the file to be exported";

    if (saveFileDialog.ShowDialog() == DialogResult.OK)
    {
        Application excelObj = (Application)Marshal.GetActiveObject("Excel.Application");
        Activate(); // <-- added (recommend by msdn, but maybe not nessary here)
        Workbook wbook = excelObj.ActiveWorkbook;
        wbook.SaveAs(saveFileDialog.FileName, XlFileFormat.xlExcel8, Type.Missing,
            Type.Missing, false, false, XlSaveAsAccessMode.xlNoChange, Type.Missing,
            Type.Missing, Type.Missing, Type.Missing, Type.Missing);
        //                wbook.Close(); // <-- don't want this anymore
    }
}

3 个答案:

答案 0 :(得分:7)

使用您的代码将工作簿保存为Open XML,因为XlFileFormat.xlWorkbookDefault对Excel 2007+的评估结果为XlFileFormat.xlOpenXMLWorkbook。这就是警告的原因:您将文件命名为XLS,但实际上它是XLSX。

您可以在saveFileDialog.Filter属性中将文件扩展名更改为xlsx,或使用XlFileFormat.xlExcel8强制Excel对象以XLS格式保存。

修改
使用此选项保存文档:

wbook.SaveAs(saveFileDialog.FileName, XlFileFormat.xlExcel8, 
            Type.Missing, Type.Missing, false, false, 
            XlSaveAsAccessMode.xlNoChange, Type.Missing, Type.Missing, 
            Type.Missing, Type.Missing, Type.Missing);

答案 1 :(得分:2)

尝试将警报设置为OFF

oExcel.DisplayAlerts = false;   

答案 2 :(得分:1)

此问题是由名为“扩展加固”的功能引起的,您可以在其中找到有关它的更多信息here

不幸的是,上面的链接还指出,至少在Office 14之前,此代码没有预期的更改。

如果您不想寻找解决方案,但只想解决问题,请在注册表中插入此密钥以禁止通知:

[HKEY_CURRENT_USER\Software\Microsoft\Office\12.0\Excel\Security] “ExtensionHardening”=dword:00000000

您可以通过执行以下操作来完成上述操作:

打开您的注册表(开始 - &gt; 运行 - &gt; regedit.exe)。

导航至HKEY_CURRENT_USER\SOFTWARE\MICROSOFT\OFFICE\12.0\EXCEL\SECURITY

右键单击右侧窗口,然后选择 - &gt; DWORD

输入“ExtensionHardening”作为名称(不带引号)

确认数据的值为“0”。