I am trying to connect a VB front end to an Access 2000 backend and am getting the following error: -2147467259(80004005) [Microsoft][ODBC Microsoft Access Drivers] could not find file '(unknown)'
Does anyone have any ideas? Thanks for any help. Here is my code.

Public Sub OpenConnection()
'On Error GoTo Err_Checker

Set cnDB = New ADODB.Connection

cnDB.ConnectionString = _
"Driver={Microsoft Access Driver (*.mdb)};" & _
"Dbq=C:\MMI\Kettle\" & _
"KettleDatabse.mdb"

cnDB.Open

'Load the main form
frmMain.Show

Exit_Checker:
Exit Sub

Err_Checker:
MsgBox "OpenConnection" & vbCrLf & Err.Number & " - " & Err.Description
Resume Exit_Checker

End Sub