InTheHand db file not found problem

Joined
Dec 22, 2005
Messages
1
Reaction score
0
Hello,

If i am not in the correct news group please let me know where i have to post this news group.

I am using the trial version of InTheHand for accessing the database of nwind.cdb file with visual basic.net . I get an error says file not found. The error is bellow.
An unhandled exception of type 'System.IO.FileNotFoundException' occurred in InTheHand.Interop.dll
Additional information: The system cannot find the file specified.
I am using it only on the emulater.

Is that not working becaus it is a trial version or some other problem.

We can buy it only if it is working. can anyone please help me.

The NWIND.cdb in the correct path i hope.

can anyone please help me.



Dim cn As InTheHand.Data.Adoce.AdoceConnection

Dim ad As InTheHand.Data.Adoce.AdoceDataAdapter

Dim DS As DataSet

Dim rowmodif As DataRow

Dim strsql As String

cn = New InTheHand.Data.Adoce.AdoceConnection

cn.Open("\MY Documents\NWIND.cdb")

strsql = "SELECT * FROM Clientes"

DS =
New DataSet

ad =
New InTheHand.Data.Adoce.AdoceDataAdapter(strsql, cn)

ad.Fill(DS, "Clientes")

DataGrid1.DataSource = DS.Tables("Clientes")

End Sub

Thanks in advance.

regards,
antony
 

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

Back
Top