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

Popular posts from this blog

java - Jmockit String final length method mocking Issue -

asp.net - Razor Page Hosted on IIS 6 Fails Every Morning -

c++ - wxwidget compiling on windows command prompt -