hello friends

I have a MS-Access database that is password protected.

When I use ADO to connect to this database

I get an error

runtime error '-2147467259(80004005)':

couldn't find installable ISAM.

this is the code i use

dim strConn as string

dim Conn as new adodb.connection

strConn = "Provider=Microsoft.Jet.OLEDB.3.51;Data Source=my database;Jet OLEDBDatabase Password=my password;Persist Security Info=False"

conn.open strConn

what is the possible solution for this problem