簡體   English   中英

導出到Excel C#錯誤

[英]Export To Excel C# Error

我沒有得到導出到excel代碼中出現的錯誤。 我有這個錯誤

無法將“System .__ ComObject”類型的COM對象強制轉換為接口類型“Microsoft.Office.Interop.Excel.Range”。 此操作失敗,因為由於以下錯誤,對IID為“{00020846-0000-0000-C000-000000000046}”的接口的COM組件的QueryInterface調用失敗:不支持此類接口(HRESULT異常:0x80004002(E_NOINTERFACE)) 。

這是我的gridview中的代碼,我的gridview的名字是dgvCommission。

void worker_DoWork(object sender, DoWorkEventArgs e)
   {
       try
        {
            timer.Elapsed += new System.Timers.ElapsedEventHandler(timer_elapsed);
            timer.Start();
            Invoke(new MyDelegate(ShowLabel), "Loading...");

            BACS.DateFrom = this.dtFrom.Value.ToShortDateString(); //this.dtFrom.Text;
            BACS.DateTo = this.dtTo.Value.ToShortDateString(); //this.dtTo.Text;
            BACS.BrokerAgent = BrokerXML;
            BACS.Payor = PayorXML;
            DS = BACS.GET_SP_BACS_ComputeCommission();
            ReadData(DS, this.dgvCommision);
            CheckGrid();
            Thread.Sleep(1);
            timer.Stop();
        }
       catch
       { }
    }

這是我在表單中導出到excel代碼。

private void ExportToExcel()
    {
        string[] arrays = new string[19];
        arrays[0] = "Type";
        arrays[1] = "Broker Agent";
        arrays[2] = "Payor";
        arrays[3] = "Billing #";
        arrays[4] = "OR No.";
        arrays[5] = "OR Date";
        arrays[6] = "Particulars";
        arrays[7] = "Mode";
        arrays[8] = "Amount Billed";
        arrays[9] = "Amount Paid";
        arrays[10] = "Non Comm Items";
        arrays[11] = "Net";
        arrays[12] = "Output VAT";
        arrays[13] = "Commissionable Amount";
        arrays[14] = "WTAX Rate";
        arrays[15] = "WTAX";
        arrays[16] = "Net Commission";
        arrays[17] = "InputVAT";
        arrays[18] = "For Fund Release";

        SystemUtil.ExportToExel(DS, arrays);
    }

ExportToExcel類代碼是這樣的:

public void ExportToExel(DataSet ds,string[] arrays)
    {
            Excel.Application oXL;
            Excel.Workbook oWB;
            Excel.Worksheet oSheet;
            //Excel.Range oRange;

            oXL = new Excel.Application();
            // Set some properties 
            oXL.Visible = true;
            oXL.DisplayAlerts = false;

            // Get a new workbook. 
            oWB = oXL.Workbooks.Add(Missing.Value);

            // Get the active sheet 
            oSheet = (Excel.Worksheet)oWB.ActiveSheet;
            oSheet.Name = "EXCEL";

            DataTable dt2 = new DataTable(); 
            if (ds.Tables[0] != null)
            {
                dt2 = ds.Tables[0];
            }


            int rowCount = 1;
            foreach (DataRow dr in dt2.Rows)
            {
                rowCount += 1;
                for (int i = 1; i < dt2.Columns.Count + 1; i++)
                {
                    if (rowCount == 2)
                    {
                        oSheet.Cells[1, i] = arrays[i - 1];// dt.Columns[i - 1].ColumnName;
                        // oSheet.Cells[1,i].Font.Background = System.Drawing.Color.Red;
                    }
                    oSheet.Cells[rowCount, i] = dr[i - 1].ToString();
                }
            }

            ////// Resize the columns 
            //oRange = oSheet.get_Range(1, 23);
            ////oRange.EntireColumn.AutoFit();
            //oRange.Range[1, 2].AutoFit();

            // Save the sheet and close 
            oSheet = null;
            // oRange = null;
            //oWB.SaveAs(@"c:\REPORTS.xls", Excel.XlFileFormat.xlWorkbookNormal,
            //    Missing.Value, Missing.Value, Missing.Value, Missing.Value,
            //    Excel.XlSaveAsAccessMode.xlExclusive,
            //    Missing.Value, Missing.Value, Missing.Value,
            //    Missing.Value, Missing.Value);
            //oWB.Close(Missing.Value, Missing.Value, Missing.Value);
            //oWB = null;
            //oXL.Quit();

            // Clean up 
            // NOTE: When in release mode, this does the trick 
            GC.WaitForPendingFinalizers();
            GC.Collect();
            GC.WaitForPendingFinalizers();
            GC.Collect();
    }

此代碼中會彈出異常錯誤。 oSheet.Cells[1, i] = arrays[i - 1];

你們知道這怎么可能發生嗎? 我不明白我的代碼中有什么問題..請幫我解決這個問題。 在此先感謝您的幫助。

嘗試改變

oSheet =(Excel.Worksheet)oWB.ActiveSheet;

至oSheet =(Excel.Worksheet)oXL.ActiveSheet;

進一步說明:MSDN提供了有關工作簿界面的以下注釋....

“此接口由Visual Studio Tools for Office運行時實現。它不適用於您的代碼。有關詳細信息,請參閱用於Office運行時概述的Visual Studio工具。”

這就是為什么在初始化新工作簿后必須引用應用程序接口的原因。

如果它解決了您的問題,請將其標記為已回答。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM