Version updates

  • Thread starter Thread starter Ardus Petus
  • Start date Start date
A

Ardus Petus

I have a customer who uses a .mdb database I wrote.
How should I structure my project so that (code and structure) updates can
take place without changing my client's data?

TIA
 
The standard approach is to split your application into a front-end
(containing the queries, forms, reports, macros and modules), linked to a
back-end (containing the tables and relationships). Only the back-end is
placed on the server: each user has his/her own copy of the front-end,
preferably on his/her hard drive.

For more information about splitting, see what Tony Toews has at
http://www.granite.ab.ca/access/splitapp/index.htm. While you're there, make
sure you check out the free Auto FE Updater he has at
http://www.granite.ab.ca/access/autofe.htm so that you can ensure that each
user has the most up-to-date version of the front-end.
 
How do you re-establish links to linked tables?

Douglas J. Steele said:
The standard approach is to split your application into a front-end
(containing the queries, forms, reports, macros and modules), linked to a
back-end (containing the tables and relationships). Only the back-end is
placed on the server: each user has his/her own copy of the front-end,
preferably on his/her hard drive.

For more information about splitting, see what Tony Toews has at
http://www.granite.ab.ca/access/splitapp/index.htm. While you're there,
make sure you check out the free Auto FE Updater he has at
http://www.granite.ab.ca/access/autofe.htm so that you can ensure that
each user has the most up-to-date version of the front-end.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top