Re: Create an Access 2000 format database using DAO?
- From: Robert Morley <rmorley@xxxxxxxxxxxxxxxxxxxxxxxxx>
- Date: Thu, 21 Feb 2008 11:36:55 -0500
If I recall correctly, at the low level, Access 2000 and Access 2002/2003 are actually the same database format. So if you create a Version40 database through code, the identifiers as to whether it's 2000 or 2002/3 will only be added when you open that database up through the GUI and they're added by Access itself (as opposed to DAO). So at that point, as Alex indicated, it's controlled by the setting in your preferences.
I'm a little rusty, so I might be wrong, but I'm pretty sure that's how it works.
Rob
Cory J. Laidlaw wrote:
Hi,.
I've tried the following line of code:
Set tdb = DBEngine.Workspaces(0).CreateDatabase(TargetPath, dbLangGeneral, dbVersion30)
it creates an access 97 version of the database. This line of code:
Set tdb = DBEngine.Workspaces(0).CreateDatabase(TargetPath, dbLangGeneral, dbVersion40)
Creates an access 2002-2003 version.
Does anyone know how to create an Access 2000 Version?
Many Thanks!!
Cory
- Follow-Ups:
- Re: Create an Access 2000 format database using DAO?
- From: Cory J. Laidlaw, Beyond01.com
- Re: Create an Access 2000 format database using DAO?
- Prev by Date: Re: Create an Access 2000 format database using DAO?
- Next by Date: Re: Modules
- Previous by thread: Re: Create an Access 2000 format database using DAO?
- Next by thread: Re: Create an Access 2000 format database using DAO?
- Index(es):
Relevant Pages
|