Probably using Access 2000.
For error 3343, have a look at these 2 articles:
http://support.microsoft.c
http://support.microsoft.c
For error 91, the problem will surely be solved if 3343 is fixed.
Main Topics
Browse All TopicsMy Visual Basic application is using MS Access database and it is multi-user. Lately I encounter the following error message when stating the application:
1. Error #3343 was generated by DAO workspace unrecognized database format 'h:\brains.mdb'
2. Error #91 was generated by Project1 object variable or with block variable not set.
After repair the database the problem will solve. Why the database corrupted and what is the possible cause?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Probably using Access 2000.
For error 3343, have a look at these 2 articles:
http://support.microsoft.c
http://support.microsoft.c
For error 91, the problem will surely be solved if 3343 is fixed.
I am using Windows NT to host MS Access 97 database but occasional the problem happen. So I move to Windows 2000, worst it happen everyday.
But I have found that my another application where the Access 97 is host on Windows 95 is working fine until now even with bigger size, so does it mean Access 97 will only work well on desktop such as Windows 9x/ME?
- Reveise the application itself and check that each module closes it's opbjects such as recordsets and the database object.
2- Have a look to the permissions especially in windows 2000.
3- Verify that all instances of the application use the same version of DAO.
4- Because the database gets corrupt frequently then no one may gain execlusive access to it so you can write an error handler code to catch the 3343 error number and repair the database then release then re-open it. You can but the repair code in a module to be called each time the database got corrupt. It's not an ultimate solution but something's better than nothing.
Question(s) below appears to have been abandoned. Your options are:
1. Accept a Comment As Answer (use the button next to the Expert's name).
2. Close the question if the information was not useful to you. You must tell the participants why you wish to do this, and allow for Expert response.
3. Ask Community Support to help split points between participating experts, or just comment here with details and we'll respond with the process.
4. Delete the question. Again, please comment to advise the other participants why you wish to do this.
For special handling needs, please post a zero point question in the link below and include the question QID/link(s) that it regards.
http://www.experts-exchang
Please click the Help Desk link on the left for Member Guidelines, Member Agreement and the Question/Answer process. Click you Member Profile to view your question history and keep them all current with updates as the collaboration effort continues, in the event new items have been created since this listing was pulled.
http://www.experts-exchang
To view your open questions, please click the following link(s) and keep them all current with updates.
http://www.experts-exchang
http://www.experts-exchang
PLEASE DO NOT AWARD THE POINTS TO ME.
------------> EXPERTS: Please leave any comments regarding this question here on closing recommendations if this item remains inactive another three days.
Thank you everyone.
Moondancer
Moderator @ Experts Exchange
P.S. For any year 2000 questions, special attention is needed to ensure the first correct response is awarded, since they are not in the comment date order, but rather in Member ID order.
Thank you for returning and finalizing this question.
Please take an extra moment when you grade questions less than an "A" to comment as to why. This helps not only the experts who have helped you, but also others in the future who may access this question to get help. If you've found alternative solutions to achieve your goal and add it here, it further adds value to this item which has not moved to our PAQ (Previously Asked Question database). Anytime that you need our help, for example, if the grade was chosen in error, let us know by posting a zero point question in the Community Support with the URL to the question involved, we're happy to help. The points to you are the same, regardless of grade assigned, but the expert points which flow are directly impacted by grades assigned. There is more about this in the HELP DESK link regarding Questions and Answers.
Thanks,
Moondancer - EE Moderator
Business Accounts
Answer for Membership
by: TimCotteePosted on 2001-06-28 at 02:57:13ID: 6234598
Just one of those things that happens with access. Especially if you have a large (>5 users) accessing the database it is quite likely that it will be corrupted from time to time. Usually because of users abnormally terminating the connection or their transaction. You already have the one and only solution which is to repair the database. It may make sense to add some code to the application which on each user's exit of the application will attempt to obtain exclusive use of the database; if it does it can then automatically run the repair/compact code to assist in the maintenance of the database.
Access is not really the best solution for a multi-user database with a large number of users for this (and other) reasons. I would personally be considering upgrading to SQL server (either the desktop edition if you only have a few users) or the full scale version if it is a large number of users.