Bob said:
If I had MS Access 2007 and developed a Data Base program, How do I
have to alter it for people with Runtime to use it, and can that
version be used by a normal Access version to make changes to the
DB?..........Thanks ....Bob
The only thing different required of a file that you want to use with the
runtime is that you must provide those things that the full version of Access
gives you that the runtime does not.
1) Full custom menus (forms or ribbons) to access all functionality because the
runtime environment does not provide any of the built in menus.
2) Error handling. In the runtime most unhandled errors will terminate the
application. That means robust error handling must be added by the developer.
In addition there is a handful of features that are not supported in the
runtime. Filter-by-form for example.
Other than those things described that you must add to the file it is still a
plain old Access file that anyone with the proper version will be able to use
(full or runtime).