I use the following code to create a new Access database.

Dim db As DAO.Database
Set db = DBEngine.CreateDatabase ("C:\New.mdb", dbLangGeneral)

That creates the database, however, when I go to Access and try to open it, I get an error saying 'Unrecognized database format 'C:\New.mdb'.

Anyone have any clue what might be going on?