Can you tell me why i get this error message?

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
 
A

Abhijeet Dev

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top