Im trying to import Data from an Access DB to an Excel Spreadsheet, the Code gives me the error

Run-time error '-2147467259(80004005)'
Could not find Installable ISAM

on the line cn.Open...

VB Code:
  1. Dim cn As ADODB.Connection, rs As ADODB.Recordset, intColIndex As Integer
  2.     ' open the database
  3.     Set cn = New ADODB.Connection
  4.     cn.Open "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" & _
  5.         tstDBFullName & ";" & "UID=myuname ;PWD=xyzu "
  6.     Set rs = New ADODB.Recordset