Hi ,
I wanna open protected database (access 97 ) .I tried this but seems not hlep :
VB Code:
  1. Dim myPath As String = Application.StartupPath
  2. Dim myConnection As New OleDb.OleDbConnection("provider=Microsoft.jet.oledb.4.0;DATA SOURCE=" _
  3. & myPath & "\DBWEB.MDB;" & "Jet OLEDB: Database Password=" & "mypassword;")
  4. Try
  5. myConnection.Open()
  6. Catch x As Exception
  7. MsgBox(x.Message())
  8. 'It keep throwing this error :
  9. couldn't find installable ISAM.
  10. End Try
Any hlep would be highly appreciated !