I need a quick way for a casual user to tell if the MDB file they are using is in the Access 2000 format or the Access 2002-2003 format. I’m aware of the indication in the title bar of the database window, but is there any other way?
Thanks.
![]() |
Patch reliability is unclear. Unless you have an immediate, pressing need to install a specific patch, don't do it. |
SIGN IN | Not a member? | REGISTER | PLUS MEMBERSHIP |
Home » Forums » AskWoody support » Productivity software by function » MS Access and database help » Quick way to determine file format of mdb (2003 sp1)
Interactively:
You can look at the Tools | Database Utilities | Convert Database submenu. The greyed out option corresponds to the current format.
Automatic:
You can put a (locked) text box on the startup form of the database, with Control Source
=IIf([CurrentProject].[FileFormat]=9,"Access 2000","Access 2002/2003")
I was aware of the Convert Database submenu as well, and thanks for the suggestion for the automatic way.
But that is not built into all databases at the moment.
My organization has chosen to convert all MDB’S to the newest file format, Access 2002-2003. So I have instructions for the users on how to do that, but I was looking for a way for them to tell what version the MDB is currently on. So unless there is another way, I’ll just instruct them to check the title bar, or maybe the Convert database sub menu, which ever turns out to be less steps for the users.
Thanks.
You can test the Jet version the database was created under using the Version property of the database. We use it all the time when testing to see if a data file needs to be migrated to a later version. You can do something like this:
Dim dbs As DAO.Database
Set dbs = DAO.OpenDatabase(strDatabaseFileName)
MDBJetVersion = dbs.Version
Set dbs = Nothing
It won’t give you something convenient like “Access 97”, but it will give you the DAO/Jet version used to create the file.
3.0 | Access 95 |
3.5 | Access 97 |
3.6 | Access 2000/2002/2003 |
Donations from Plus members keep this site going. You can identify the people who support AskWoody by the Plus badge on their avatars.
AskWoody Plus members not only get access to all of the contents of this site -- including Susan Bradley's frequently updated Patch Watch listing -- they also receive weekly AskWoody Plus Newsletters (formerly Windows Secrets Newsletter) and AskWoody Plus Alerts, emails when there are important breaking developments.
Welcome to our unique respite from the madness.
It's easy to post questions about Windows 11, Windows 10, Win8.1, Win7, Surface, Office, or browse through our Forums. Post anonymously or register for greater privileges. Keep it civil, please: Decorous Lounge rules strictly enforced. Questions? Contact Customer Support.
Want to Advertise in the free newsletter? How about a gift subscription in honor of a birthday? Send an email to sb@askwoody.com to ask how.
Mastodon profile for DefConPatch
Mastodon profile for AskWoody
Home • About • FAQ • Posts & Privacy • Forums • My Account
Register • Free Newsletter • Plus Membership • Gift Certificates • MS-DEFCON Alerts
Copyright ©2004-2025 by AskWoody Tech LLC. All Rights Reserved.
Notifications