Inalidate Database when accessing MSAccess2K
-
I`m creating an application which uses MSAccess. The application is written and with VC 6.0/SP5 and DAO-SDK 3.6. When creating the database with MSAccess 95 everything works fine. When creating the database with MSAccess2K I get the message that this is not a valid database. I also get this message, when I convert the working '95 database to 2K. I assume, that I have to alter the header files or the alike (and recompile the whole library), to get the application working with MSAccess2K. I remember having read about this elsewhere in the internet, but cannot remember the location. Can someone help me. Either by telling me, where to find the information, or providing some hints, what to do? Regards G. Steudtel
-
I`m creating an application which uses MSAccess. The application is written and with VC 6.0/SP5 and DAO-SDK 3.6. When creating the database with MSAccess 95 everything works fine. When creating the database with MSAccess2K I get the message that this is not a valid database. I also get this message, when I convert the working '95 database to 2K. I assume, that I have to alter the header files or the alike (and recompile the whole library), to get the application working with MSAccess2K. I remember having read about this elsewhere in the internet, but cannot remember the location. Can someone help me. Either by telling me, where to find the information, or providing some hints, what to do? Regards G. Steudtel
Use the following line before using any database routines: AfxGetModuleState()->m_dwVersion = 0x601; Once this is called, you should be able to open a MSAccess 2000 version database. Joel Lucsy