错误 115 类型 'Excel.IExcelDataReader' 未定义

Error 115 Type 'Excel.IExcelDataReader' is not defined

我有一个具有 excel 导出和导入功能的 vb.net 应用程序。我不太熟悉这个应用程序,因为我的 ec 同事在没有太多信息的情况下把它留给我了。现在,当我尝试构建应用程序时,它显示以下错误

Error   115 Type 'Excel.IExcelDataReader' is not defined.   E:\CManager\CManager\Win764\CManager\MyApp.vb  2376    28  ContributionManager

我试图获取它的 dll 但找不到。

有人可以帮忙吗...

ExcelDataReader

...顺便说一句。你听说过那个 google 东西吗 ;)

删除了现有的 dll 并再次添加!已解决

所以..首先
Add Referente to your Project 到 Microsoft.Office.Interop,在 COM 部分

在您的表单中

 Imports Microsoft.Office.Interop.Excel
 Imports Microsoft.Office.Interop

并使用

    Dim xlApp As Microsoft.Office.Interop.Excel.Application
    Dim xlWorkBook As Microsoft.Office.Interop.Excel.Workbook
    Dim xlWorkSheet As Microsoft.Office.Interop.Excel.Worksheet

 xlApp = New Microsoft.Office.Interop.Excel.Application
 xlWorkSheet = xlWorkBook.Sheets("sheet1")

'在 sheet
上写一些字符串 '然后保存它!

   xlWorkSheet.SaveAs("D:\Reports\" & worker & Id & ".xlsx")

    xlWorkBook.Close()
    xlApp.Quit()

    releaseObject(xlApp)
    releaseObject(xlWorkBook)
    releaseObject(xlWorkSheet)