excel vba - Could not find installable ISAM error in VBA for .accdb file -
i trying connect ms excel vba program ms access database. while trying access *.mdb files working in both local drive , share drive. while accessing *.accdb file able connect in local drive. while trying connect .accdb file in shared drive getting error "could not find installable isam".
here code trying,
strdbpath = "\\shared drive path\database.accdb" set objconnection = new connection objconnection .connectionstring = "provider=microsoft.ace.oledb.12.0;" & _ "data source=" & strdbpath & ";" & _ "persist security info=false" & ";" & _ "pwd=" & pass .open end
please provide resolution query.
regards, susanta kumar patra
Comments
Post a Comment