微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

c# – Excel Interop Worksheet副本引发异常HRESULT:0x800A03EC

我在使用Interop在Excel 2003中复制工作表时遇到问题.该代码适用于30-40个副本,然后抛出异常“HRESULT异常:0x800A03EC”.下面的测试代码已经在 http://support.microsoft.com/kb/210684/en-us中包含一个补丁,但没有成功.
有谁知道任何解决方法吗?
提前致谢

using Excel = Microsoft.Office.Interop.Excel;

private void button2_Click(object sender,EventArgs e)
    {
        string template_path = @"c:\temp\template.xlt";
        string filename = @"c:\temp\testxl1.xls";
        if (File.Exists(filename))
            File.Delete(filename);

        object missing = System.Reflection.Missing.Value;

        System.Globalization.CultureInfo my_culture = System.Threading.Thread.CurrentThread.CurrentCulture;
        System.Threading.Thread.CurrentThread.CurrentCulture = new System.Globalization.CultureInfo("en-US");

        Excel.ApplicationClass xlapp = new Excel.ApplicationClass();
        xlapp.Visible = true;
        xlapp.UserControl = true;

        Excel.Workbook xlwb = xlapp.Workbooks.Add(template_path);

        xlwb.SaveAs(@filename,missing,Excel.XlSaveAsAccessMode.xlNoChange,missing);


        Excel.Worksheet xlws = xlwb.Worksheets["diario"] as Excel.Worksheet;

        int copies = 200;

        for (int i = 0; i < copies; i++)
        {
            #region Patch kb/210684

            if (copies % 10 == 0)
            {                    
                xlwb.Close(true,missing);
                System.Runtime.InteropServices.Marshal.ReleaseComObject(xlwb);
                xlwb = null;

                System.Runtime.InteropServices.Marshal.ReleaseComObject(xlws);
                xlws = null;

                Application.DoEvents();

                xlwb = xlapp.Workbooks.Open(@filename,missing);
                xlws = xlwb.Worksheets["diario"] as Excel.Worksheet;

            }

            #endregion

            xlws.copy(System.Reflection.Missing.Value,xlwb.Worksheets.Count);
        }

        System.Runtime.InteropServices.Marshal.ReleaseComObject(xlws);
        xlws = null;

        xlwb.Close(true,missing);
        System.Runtime.InteropServices.Marshal.ReleaseComObject(xlwb);
        xlwb = null;

        xlapp.Quit();
        System.Runtime.InteropServices.Marshal.ReleaseComObject(xlapp);
        xlapp = null;

        System.Threading.Thread.CurrentThread.CurrentCulture = my_culture;
    }

解决方法

我唯一能找到的是当本地机器未设置为美国英语时异常可能是Excel LCID问题.

http://www.made4dotnet.com/Default.aspx?tabid=141&aid=15

要么

http://support.microsoft.com/kb/320369/en-us

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐