Could some body know about ISAM
-
Hi guys is there some body could help me with ISAM problem ? I have one form which is contains a crystal report viewer but when I run this form I always get error message " Could not find Installable ISAM ", Here is I show you my listing code : Dim dasuminv As OleDb.OleDbDataAdapter Dim con As New OleDb.OleDbConnection(Koneksi("E:\Data\BTH.mdb")) Dim dtsuminv As New DataTable() Function Koneksi(ByVal strdatabase As String) As String Dim Kalimat As String Kalimat = "Provider=Microsoft.Jet.OLEDB.4.0;" Kalimat &= "Datasource = " & strdatabase & "" Return Kalimat End Function Private Sub Form3_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load range1.CustomFormat = "dd-MMMM-yyyy" range2.CustomFormat = "dd-MMMM-yyyy" Try dasuminv = New OleDb.OleDbDataAdapter("select* from suminv", con) dasuminv.Fill(dtsuminv) Catch ex As Exception MsgBox(ex.Message) End Try End Sub I don't know how to fixed this matter, could you please to help me ASAP thank you for your assist Best regards I C E