ISAM
Date: 2000/07/17
Message-ID: <8l03bt$tmj$1_at_slb6.atl.mindspring.net>#1/1
I'm using a VB6 front-end with an Access 97 database using an ADO DataControl to connect to the DB. Everything is fine until I try to add a password to the database - ADO error message says 'Couldn't find installable ISAM' (no error number). I haven't been able to locate any help in the Help files. Do I need to set a reference to something?
Thanks,
Max
  With adoArticle
    .ConnectionString = "Provider=Microsoft.Jet.OLEDB.3.51;" & _
    "Persist Security Info=False;Data Source=" & mstrDBPath & _
    "; pwd=test; Mode=Read|Write"
    .CursorLocation = adUseClient
    .CursorType = adOpenStatic
    .CommandType = adCmdText
    .RecordSource = "SELECT * FROM Articles Order By Title"
    .Refresh
  End With
Received on Mon Jul 17 2000 - 00:00:00 CEST
