I'm attempting to use the following ExcelReader library:
http://exceldatareader.codeplex.com/
The code example shows:
//1. Reading from a binary Excel file ('97-2003 format; *.xls)
IExcelDataReader excelReader = ExcelReaderFactory.CreateBinaryReader(stream);
My application is (unfortunately) in VB.NET. I've wrote the following:
Dim excelReader as IExcelDataReader
However I just get "IExcelDataReader is undefined".
I've tried importing Excel.dll by doing:
Imports Excel
But again I just get an error.
Why is this? How can I reference this library?