Hello,
I am trying to open a connection to an Microsoft Access data base in visual basic.net. I get the message ISAM installable file not found. I have the file MSISAM11.dll in c:\windows\system32. I registered it with regsvr32. and it still does not work. What can I do
thanks a lot in advance for your help
Aurora Tellez.

ISAM installable file not found
SASMJS
I haven't heard of this problem before, and I'll need some more information in order to help you.
When and where do you get this error Is it when you try to make create a new connection in the Data Source Configuration Wizard Can you test your connection in the dialog Or does the error happen when you try to configure the datasource Or does it happen when you hit F5 to run the app
Also, what version of Access is the database With more information we can try to narrow down what is going wrong.
Thanks,
Adam Braden
Visual Basic Team
James Nachbar
Geez I can't believe I did that too.... thank you thank you thank you.
tinytee
Hello Adam,
I was misstyping the connection string, I had allready marked a previous answer as the correct answer but I still receive more answers, what else do I have to do to close this report
Thanks a lot.
Aurora.
Thibaut Barrère
Thanks
PascalJC
Can you post your connection string
prenney
I am learning VB.NET and ADO.NET. I am trying to open an Microsoft Access data base with the following code and I get the error message "ISAM Installable file not found"
Imports
SystemImports
System.DataImports
System.Data.OleDbPublic
Class Form1
Dim cn As New OleDbConnection() Private Sub cerrarBaseDeDatos()cn.close()
End Sub Private Sub abrirBaseDeDatos() Dim cnString As StringcnString = "provider=Microsoft.jet.oledb.4.0;" _
& "DataSource = C:\Documents and Settings\Aurora Perezyera\mami\programacion administrativa\libros.mdb"
cn.ConnectionString = cnString
Trycn.Open()
Catch ex As OleDbException Dim i As Integer, msg As String For i = 0 To ex.Errors.Count - 1 Dim oledberr As OleDbError = ex.Errors(i)msg = "Message = " & oledberr.Message & ControlChars.CrLf
msg &= "Source = " & oledberr.Source & ControlChars.CrLf
msg &= "NativeError = " & oledberr.NativeError & ControlChars.CrLf
msg &= "SQLState = " & oledberr.SQLState & ControlChars.FormFeed
NextMessageBox.Show(msg)
Catch ex As ExceptionMessageBox.Show(ex.Message)
Finally 'asegura que la conexion se cierrecn.Close()
End Try End Sub Private Sub MenuSalir_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MenuSalir.ClickcerrarBaseDeDatos()
EndabrirBaseDeDatos()
End SubEnd
ClassI am working with Microsoft Access 2002 and Microsoft Development Environment 2002. and Microsoft.NET framewirk 1.0.
In my previous program I established the connection using the servers explorer and everything worked fine. But in this second program I am trying to establish the connection using code and I get the error message.
Thanks a lot in advance for your help.
Aurora Tellez.
Pankajsql2005
Near as I can tell this is a supporting file for Windows Media Player version 7.0. How are you using this file
raduvv
thank you very much for your help. You are right, I was missing the space. I appreciate very much your help.
Aurora.
Braian
putupakerisan.
lshpiz
Vivekthangaswamy
Andy Lindley
Thomas2054
You don't have to do anything. Someone is apparently having the same problem and posted on the end of this message instead of starting a new thread. Not the best thing to do since you've already marked the question as answered.
If you don't want to receive any more notifications you can unsubscribe from the thread.
VBKnucklehead