comart
March 28th, 2001, 08:32 AM
The ADO Data control in VB6 does not work with a connection to Access 2000, although it works with access 97. I get an Invalid database format error. What has to be done to make access 2000 work?
|
Click to See Complete Forum and Search --> : Access 2000 comart March 28th, 2001, 08:32 AM The ADO Data control in VB6 does not work with a connection to Access 2000, although it works with access 97. I get an Invalid database format error. What has to be done to make access 2000 work? Iouri March 28th, 2001, 08:45 AM It is always a bad idea to use data control. Try to use connection. sConn = "Provider=Microsoft.Jet.OLEDB.4.0;" & _ "Data Source=" & DBNAME & _ ";Persist Security Info=False" Iouri Boutchkine iouri@hotsheet.com codeguru.com
Copyright Internet.com Inc., All Rights Reserved. |