Hi all,
I am having a foxpro table ( VF6). This is linked in MS access. From a vb.net application, i am reading the values in the foxpro table. Currently the search is taking a long time. So thought about indexing the foxpro table. But from a vb.net application, i am not able to index the table. So i indexed the foxpro table. Then it created a .idx file. How can i access this indexed foxpro table from vb.net
here is the sample of code used for connecting to the tables through MS ACCESS.
I am having a foxpro table ( VF6). This is linked in MS access. From a vb.net application, i am reading the values in the foxpro table. Currently the search is taking a long time. So thought about indexing the foxpro table. But from a vb.net application, i am not able to index the table. So i indexed the foxpro table. Then it created a .idx file. How can i access this indexed foxpro table from vb.net
here is the sample of code used for connecting to the tables through MS ACCESS.
Code:
Private Sub indexng_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
cn = New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=D:\database.mdb;Persist Security Info=False")
cn.Open()
End Sub