Pat is giving you some great advice. For 99% of the Access users out there, there is no replication since the .mdb database.
Before you read further, I suggest that you click his Thanks button.
This advice is not for a rank beginner. Warning: it contains graphic details about Replication.
It is possible to use an old .mdb for replication along-side (as the back-end ) Access 2010. That would
not be my preference. But, people actually are doing that.
If your project is an absolutely "must do", here is my idea and history of replication. If it helps you understand the sheer complexity and avoid doing it in the first place; hopefully this post still helped you.
You didn't mention MS Access Version.
The older versions with a .mdb extension had a feature called
Replication. Loved teaching that part of the access certified course and used it for several large applications. That said, there are a lot of rules to follow. Replication (or disconnected data) took a lot of planning. It doesn't just magically work to your benefit with the old Replication Wizard of Access 97.
As Ancient Access Lore goes, this feature is no longer supported since the .mdb extension. Some say it is because so few used it. Others say, it was the lousy documentation for a really robust feature (very true). Some say it caused many an Access Programmer to go crazy (also true in my case). I say. it was robbing Microsoft of a lot of SQL Server licenses. You would never believe some of the absolutely huge clients that made use of this feature license free. Monster Huge Access applications with replication that literally ruled our seas.
http://www.access-experts.com/default.aspx?selection=TutorialReplication
There is a lot on the subject of Replication. If I were tasked to do such a thing today, a re-visit of all the historical documentation and relics on how Replication worked would be a must.
For one of my long-forgotten project with VB6, the Access DAO and a SQL Server database (pre-internet - phone dialup) a team of about 30 programmers designed a custom replication tool for the old Mac Tools turck owners with PC and dial-up to SQL Server.
Basically, start with a Master DB. There will need to be fields in each and every table to determine if the data is dirty, version number, unique ID and more.
Any Replication (or disconnected data) must utilize a
Conflict Resolution Manager in case the disconnected data was changed (dirty) while the master data was changed. Conflict Resolution is done on a record-by-record basis.
Access 2010 would basically require building all of this as a custom process.
http://support.microsoft.com/kb/182886#appliesto Here is the short list of design requirements - as questions.
If this is not enough complexity to encourage an alternative:
Here is the Access 2010 Tech Net reference to the custom
code to modify and make your own custom
Replication Conflict Manager.
http://support.microsoft.com/kb/158930
Used this years ago in Access 97 to create a very custom interface. It was great once it worked and passed Quality Assurance. ( I was QA manager).
Alternative:
During the last century (year 2000), the government agency I worked for needed to do on-site audits with disconnected data. The IT Staff wasn't all that <fill in the blank>. So, it was preferable to come up with a different option than Replication or networks.
My design was a system to upload all of the current tables to a laptop's local tables. It was basically a create table query of all the tables.
As the agent went on-site with a portable, they conducted observations, inspections, audits, and updates. None of this data entry was saved to those uploaded tables.
Instead, any changes / edits / additions were saved to a custom set of empty local tables that only held the changes / edits / additions along with a copy of the data that was changed, edited, added.
These could provide a custom Report of the changes - the report showed the old values and any changed (or added) values. The report could be saved to a data file and e-mailed. My choice was to save it as XML (for computers to read) and Excel (for humans to read).
Back at the main office - The e-mail was received - there was a custom tool to update the changes and additions back into the master database.
The custom tool became known to users as the Custom Conflict Resolution application.
So, basically the end result was somewhat the same. It still took considerable planning and a lot of resources to make it happen correctly.
Pats answer is exactly the right answer.
My "advice" might help provide some considerations to weigh the resources necessary should your requirement be absolutely necessary.
Regards