vote up 0 vote down star

The database that I am working on (in MS-Access XP) seems to have become corrupted somehow. It no longer supports any events - clicks, change, update events, nothing seems to work. This is the error that I get:
The expression On Change you entered as the event property setting produced the following error: Object or class does not support the set of events.

What can I do to make events start working again? I have tried Tools->Database Utilities->Compact and Repair Database..., but it didn't help at all. Also, it hasn't been like this the whole time - events were originally working, but now nothing works, not even the auto-generated command buttons.

flag

77% accept rate
Was this an .mde file that was renamed to .mdb? – GuinnessFan Oct 13 at 14:56
No, it was an mdb file all along, but installing the Access 2007 runtime stuffed a few things up for it. – a_m0d Oct 13 at 23:28

5 Answers

vote up 3 vote down check

Compact and repair generally won't solve problems that happens in objects other than tables and indexes. Importing usually fixes those but maybe try a decompile and then an import. Decompile or how to reduce Microsoft Access MDB/MDE size and decrease start-up times

I encountered the same problem once and documented my trouble shooting steps here. The expression On Click you entered ...

Also see Corrupt Objects within a Corrupt Microsoft Access MDB

Long discussion summarized.

One page that might have a solution that might help is Errors using multiple versions of Access under Vista/Windows 7 This is basically a permissions problem into the registry.

Another suggestion is to to repair the Office 2003 installation in control panel. A2003 then reverts to using Version 11 of the library, but only until A2007 is used again, then the problem reappears.

The original poster stated "Okay, after a few restarts, it seems that removing the 2007 runtime did fix the problem for me. "

link|flag
I followed the steps you outlined, but they didn't help me at all. However, I saw a post on the hyphen site which mentions that Office 2007 causes problems - sure enough, I have the Access 2007 runtime on my machine, and this project (for some reason) references the Access 12 Object library. The other post says to change the priority of the reference, but I can't do this because the reference is (apparently) in use, even though I am not running anything. – a_m0d Oct 13 at 4:17
Oh, the A2002 project references the Access 12 Object library? I've seen that problem. I thought it was mentioned at allenbrowne.com but I can't see it there right now. It's some kind of permissions problem. What happens when you create a new MDB? Do you still see the Access 12 Object library? – Tony Toews Oct 13 at 4:24
I don't know what you mean by the hyphen site. – Tony Toews Oct 13 at 4:24
Errors using multiple versions of Access under Vista/Windows 7 allenbrowne.com/bug-17.html – Tony Toews Oct 13 at 4:27
experts-exchange.com/Microsoft/Development/… is the post I was trying to follow. I tried creating a new MDB and importing the forms, etc. but that reference also comes with it – a_m0d Oct 13 at 4:28
show 12 more comments
vote up 3 vote down

Tony alluded to this in his long string of comments, but this sounds exactly like the dueling Access registration problem. I hadn't used A2007 until recently (I had the runtime installed to test if a database developed in A2003 could be deployed under it -- it could -- but hadn't used it since that testing was completely), and when I run A2007 after I've been using A2003, it has to reconfigure itself. The other day, something went wrong during the A2003 reconfiguration (after having last run A2007) and I got errors similar to yours. Running A2007 (to re-register everything as A2007) and then running A2003 (to re-register everything as A2003) fixed the problem.

The key is that when the re-registration fails, Access doesn't necessarily know it the next time it runs, so you end up running in an environment that is partly registered for A2003 and partly for A2007. The way to restore it is to run the other version of Access. That is, if A2003 is launching without the reconfiguration notice, then close it down and run A2007 so it reconfigures itself and re-registers itself as the real Access. Then when you run A2003 next, it will re-register itself as the authoritative version of Access and your A2003 app should have all of its references in proper shape.

Yes, this is very annoying.

And time-consuming.

I don't know why MS seems to think this is something that doesn't need to be fixed. While I know they don't give a rat's ass about developers who need to run A2003 and A2007 side by side, there are plenty of end users who might have an A2007 runtime app installed but also have A2003 installed as part of their base Office installation.

This has been going on forever, so I doubt it will ever be fixed.

link|flag
About the only solution here would be to use the Sagekey runtime. – Tony Toews Oct 14 at 3:12
That would work if you've got a 2007 runtime duelling with full A2003, but how would you use SageKey scripts to cure the problem for full installations of the two apps? – David W. Fenton Oct 15 at 3:34
vote up 0 vote down

You decompile the database by adding the flag /decompile to the start-up options i.e.

msaccess.exe “C:\my_folder\mydb.mdb” /decompile

I find that solves most of my problems. If not then another one is to re-secure the database by running the security wizard. This basically makes a new db and imports all the objects for you

link|flag
Note that if you have multiple versions of Access I'm not sure which version of Access might be used to do the decompile. Results might not be pretty. <smile> – Tony Toews Oct 14 at 3:10
Fair point, in that case add the exact path to the version of access you want to do the decompile with – Kevin Ross Oct 15 at 10:57
vote up 0 vote down

Can you see the code in your code modules? If so, cut and paste it somewhere safe. Then flip the HasModule setting for each form to false, repair the database, and restore the code to newly created code modules.

link|flag
Tried this, but it didn't work. – a_m0d Oct 13 at 4:32
vote up 0 vote down

Try to decompile and recompile the database.

If that does not work, I usually create a new database and import everything from this one to the new one. If something is corrupted, I will encounter issues at that time and be able to fix it.

link|flag
How do I decompile and recompile the database? I can't see an option for it in the menus. – a_m0d Oct 13 at 1:09
Importing everything into a new database seemed to import all the errors as well... – a_m0d Oct 13 at 1:13
Alt+F11 will pull up the VBA Designer. Choose Debug | Compile. – GuinnessFan Oct 13 at 2:37
Debug->Compile is grayed out - can't choose that. – a_m0d Oct 13 at 3:52
Decompile is a command line option – Raj More Oct 13 at 19:02

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.