DBaccess 97

corrado

Member
Licensed User
Longtime User
I have a application for an device that use a DB Acceess 97.
On the PC, openDB = true, on the device openDB = false.
On the folder the device, have copied DB2000 ADODB inteface.

This is the code:
LibDB.New1
db = AppPath & "\DBrubrica.mdb"
cn = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source = " & db
LibDB.ConnectionString(cn)
If LibDB.OpenDB(0) = True Then
Msgbox ("Open true")
End If
If LibDB.OpenDB(0) = False Then
Msgbox (LibDB.ErrorCheck(True))
End If

Thank for the hep.

device: HTC diamond
 
Top