In order to develop and maintain applications they should be split
into FrontEnd and BackEnd. Once the application approaches stability,
most of the changes will be in the FrontEnd only. That means that the
FrontEnd can be maintained and enhanced by the developer (you) without
affecting the user(s). That also means that when the FrontEnd has
been changed and distributed again to the user(s) each user's copy can
be re-linked to the production data in the BackEnd.
As an educational exercise you might do the following:
1. Create MyTables.mdb. In that mdb create one or two tables and
nothing else.
2. Create MyFrontEnd.mdb. Before you do anything else, get
external data, Link to the table(s) in MyTables.mdb.
3. Still in MyFrontEnd.mdb, click on the Autoform Wizard Icon and
let it help you create a form. At the end of that creation process
switch to Run mode.
4. Enter several records of data using your new form.
5. Navigate back and forth among the new records you've just
created. The fact that you can see the different records means that
they're in the table in MyTables.mdb.
7. To verify the above, close MyFrontEnd.mdb and open MyTables.mdb.
Open the table on which your form was based. You will see the records
you just entered.
------------------------------------------
There are a couple of newsgroups that are particularly useful to new
Access developers:
microsoft.public.access.gettingstarted
microsoft.public.access.tablesdesign
There is also a very useful web site:
www.mvps.org/access
HTH