I have an application that uses Microsoft.Office.Interop.Excel to pull data from an Excel workbook. The information in the Excel workbook has been moved to an
The easiest way is to use ADO.Net to access it just like you would any other database. Create an OleDbConnection object passing in an appropriate conenction string. Here's an example:
var conn = new OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\emp.mdb;");