I have had joy with loading information form Access tables, with out loading Access.... but I am having a heck of a time tring to load forms with out actually opening Access IF ANY ONE CAN HELP.........
Hopefully the following code will point you in the right direction .... GOOD LUCK
strConnString As String = "Driver={Microsoft Access Driver (*.mdb)};" & _
"Dbq=FileRegistration.mdb;" & _
"DefaultDir=C:\blablabla\;" & _
"Uid=Admin; PWD=password;"
If boolRecordSetOpen = True Then
rs.Close
Else
Set conn = CreateObject("ADODB.Connection"

conn.Open strConnString
Set rs = CreateObject("ADODB.Recordset"

End If
rs.CursorType = adOpenDynamic
rs.LockType = adLockOptimistic
If boolIncoming = True Then
rs.Open "select * from FileIn order by [File name];", conn, adOpenDynamic
Else
rs.Open "select * from FileOut order by [File name];", conn, adOpenDynamic
End If
boolRecordSetOpen = True