Can someone please show me an example of how I edit this code to open a password protected database?

i tried this:

Code:
Set conn = New ADODB.Connection
conn.Open "Provider=Microsoft.Jet.OLEDB.4.0;" & _
"Data Source=" & App.Path & "\Database.mdb;" & _
"Persist Security Info=False; Jet OLEDB: Database Password=password"


but, it gives me an error saying it can not find an installable ISAM.

Any ideas????

Thanks