Yes, users can install Access2007 runtime. You can use Access2000 to deploy
your application.
1. You’ll need to edit the users registry to enable the macro warning message.
2. Do not use ActiveX.
3. Do note of windows updates as sometimes it can cause problems.
4. Or use Access2007 with Developer Extension to deploy on a secure/trusted
location.
Usually there’s no problem with a machine on windows xp and A2K7 runtime,
sometimes windows update can cause problem, which I had decovered. All you
need to do is just recompile, compact and repair, make the mde again or
sometime a little code change does wonders.
However, if the users are using Vista, you may need to do more work. On my
early deployment, I did not encounter problems until vista updates. Example,
it will failed to read a filter condition like
ItemID Like Ԡ& Me.ItemID & “*’â€
It will read text like “ACCExxxâ€, “ACCBxxx†but not “ACCSxxxâ€. This problem
varies, sometimes it can sometime it can’t. Or it simply failed to read a
control value.
To avoid these errors, make sure you have proper error handling to trap where
the errors came from. Like..
MsgBox “Error No: “ & Err.Number & “ – “ & Err.Description , “VbCriticalâ€,
“TitleWhereEventFailedNamedâ€
Hope this will help.