Okay I am trying to make a class library that takes information from an excel file and puts it into an access database, but I keep getting this dumb object reference error that always screws me over. Here is my code:

vb Code:
  1. Dim xlApp As Excel.Application
  2.     Dim xlWbs As Excel.Workbooks
  3.     Dim xlBook As Excel.Workbook
  4.     Dim xlSheet As Excel.Worksheet
  5.     Dim xlRange As Excel.Range
  6.     Dim strExcelPath As New String("C:\Users\Aj\Desktop\Tax_Research_Template_2010_-_Excel.xls")
  7.     Dim accConn As String = "C:\Users\Aj\Desktop\TaxCert_be.accdb"
  8.     Dim xlDT As New DataTable
  9.     Dim xlDR As DataRow = xlDT.NewRow
  10.     Public Sub XLMain()
  11.         xlBook = xlWbs.Open(strExcelPath)
  12.         xlSheet = xlBook.Worksheets(1)
  13.         ReadXL()
  14.         ImportXL()
  15.         CloseExcel()
  16.     End Sub
Code:
Object reference not set to an instance of an object.
xlBook = xlWbs.Open(strExcelPath)