Can you tell me why i get this error message?

  • Thread starter Thread starter Miguel Dias Moura
  • Start date Start date
M

Miguel Dias Moura

Hello,

i have been working for days in a code which populates an ASP.net Calendar control with events taken from an Access Database.
I was able to make it work in C# but i need to make it work in VB until tomorrow.

In this moment i am getting this error:
System.Data.OleDb.OleDbException: Could not find installable ISAM.

I get the error in Line 17 from the following code:

Line 15: Dim Conn as New OleDbConnection(StrConn)
Line 16:
Line 17: Conn.Open()
Line 18: da = New OleDbDataAdapter(strSQL, Conn)
Line 19: da.Fill(ds, "events")

Can you help me out?

Thank You,
Miguel
 
http://support.microsoft.com/default.aspx?scid=KB;EN-US;318161

Abhijeet Dev
Hello,

i have been working for days in a code which populates an ASP.net Calendar control with events taken from an Access Database.
I was able to make it work in C# but i need to make it work in VB until tomorrow.

In this moment i am getting this error:
System.Data.OleDb.OleDbException: Could not find installable ISAM.

I get the error in Line 17 from the following code:

Line 15: Dim Conn as New OleDbConnection(StrConn)
Line 16:
Line 17: Conn.Open()
Line 18: da = New OleDbDataAdapter(strSQL, Conn)
Line 19: da.Fill(ds, "events")

Can you help me out?

Thank You,
Miguel
 
Back
Top