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
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