I am trying to open an access database by using Ole. using the following code:
Sub OpenDBShared (str DBPath as string)
Dim cnnDB as oledb.connection
'Initialize Connection object
cnnDB = new Oledb connection
'specify Microsoft Jet 4.0 Provider and then open the
'database specified in the strPath variable.
With cnnDB
.Provider = "Microsoft.Jet.Oledb.4.0"
The problem is that Microsoft Jet 4.0 is not in the options offered me. Would appreciate knowing what I am doing wrong. Thanks, Ray Holt