Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

VB with Access 2000 3

Status
Not open for further replies.

redsand

Programmer
Aug 15, 2001
45
0
0
US
I have vb app that is using an access database. I have coverted the db to 2000 and am getting unrecognized database format when opening the vb app. I am running mdac2.6.

Dim rs As Recordset
Dim db as Database

strAppDir = App.Path
strDBName = strAppDir & "\VenRate.mdb"
Set db = Workspaces(0).OpenDatabase(strDBName, False, False)
bExclusiveMode = False

Can anyone provide insight on where to go from here.
Thanks in advance.
 

Which library are you referencing? Needs to be DAO 3.6.

Good Luck

 
ADO will work fine. Microsoft ActiveX Data Objects 2.6 should be able to handle it useing the Jet Engine version 4 or later. BlackburnKL
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top