Banaticus
02-09-2006, 11:23 AM
To allow multiple users, each with their own computer, access to a database that is stored on an office computer, where do I start? Where do I learn more? I'd like for them to use the switchboard that I made which points to the correct forms to use, instead of allowing them direct access to the database.
KenHigg
02-09-2006, 11:30 AM
To allow multiple users, each with their own computer, access to a database that is stored on an office computer, where do I start? Where do I learn more? I'd like for them to use the switchboard that I made which points to the correct forms to use, instead of allowing them direct access to the database.
a. make two databases, one with just the tables (known as the backend) and one with the rest of the stuff like forms, queries, etc (known as the frontend)
b. Put the backend database with the tables in it on a server that they all have access to.
c. Put a copy of the other database, the frontend, on each workstation and link to the tables on the server database
This should get you going for now :)
steevie_t
02-10-2006, 02:55 AM
you might want to look at a book "Building Microsoft Access Applications" (http://www.microsoft.com/mspress/books/7107.asp)
There is a wizard that will split a database, search for "Split an Access database" in the help.
You might also want to apply security, make the front end that the users access an MDE, etc.