创建Excel数据表时出错0x800A03EC

时间:2015-06-20 03:40:17

标签: c# datagridview

我尝试使用datagridview中的信息创建一个excel文件,这是我从db获得的。但我从HRESULT得到以下错误异常:0x800A03EC“(System.Runtime.InteropServices.COMException)...错误似乎与**

一致

代码在按钮内点击

        Microsoft.Office.Interop.Excel.Application excel1 = new Microsoft.Office.Interop.Excel.Application { };

        Workbook work1 = excel1.Workbooks.Add(XlSheetType.xlWorksheet);
        Worksheet ws1 = (Worksheet)excel1.ActiveSheet;

        excel1.Visible = true;

        ws1.Cells[1,1] = "ID";
        ws1.Cells[1,2]= "NAME";


       ** ws1.Cells[1,1]= dataGridView1[1,1];
        ws1.Cells[1, 2] = dataGridView1[1,2];

1 个答案:

答案 0 :(得分:0)

有可用的参考资料,例如见:

这些只是一些要看的内容。