vote up 0 vote down star
2

I am opening a MS Access DB which is Password protected in vb.net using the folloing code:

Try
   oDB = oDBEngine.OpenDatabase(Name:=strFullFileName, Options:=False, _
                               ReadOnly:=False, Connect:="")

Catch ex As Exception

   strError = "File is password protected."
   Exit Function

End Try

But while releasing the object the msaccess.exe opens up automatically.

 **System.Runtime.InteropServices.Marshal.ReleaseComObject(object)**

Could anyone help me, how to resolve the issue....

flag

35% accept rate

1 Answer

vote up 3 vote down

Rather than using OpenDatabase to get the error, how about a connection string?

cn.Open "Provider=Microsoft.Jet.OLEDB.4.0;" & _
       "Data Source=" & strFile & ";" & _
       "Persist Security Info=False"

This will also give an error if a password is not supplied.

link|flag
Hi Remou, You are genius, It is working. Thank you. – Sugam Dec 19 '08 at 13:51

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.