Hello,
I am trying to create an Access mdb file through my VB application. I am currently using the following two lines of code to do so:
Dim NewDB As Database
Set NewDB = CreateDatabase(dbName,dbLangGeneral,dbVersion40)
Where dbName is the name of the mdb file. This creates the mdb file, however when I try to open the db in MS Access 2000 it tells me that it was created using an earlier version of Access. Although all the data is there and the mdb looks fine, I was just wondering why this message appears.
I am using VB6, SP5 ... does this make a difference? I believe this is the latest service pack.
Also, is this using DAO? If so, how do I create a db using ADO?
Thanks,
Alan
I am trying to create an Access mdb file through my VB application. I am currently using the following two lines of code to do so:
Dim NewDB As Database
Set NewDB = CreateDatabase(dbName,dbLangGeneral,dbVersion40)
Where dbName is the name of the mdb file. This creates the mdb file, however when I try to open the db in MS Access 2000 it tells me that it was created using an earlier version of Access. Although all the data is there and the mdb looks fine, I was just wondering why this message appears.
I am using VB6, SP5 ... does this make a difference? I believe this is the latest service pack.
Also, is this using DAO? If so, how do I create a db using ADO?
Thanks,
Alan