If you think about it, once you replicate a database the
autonumber still has to remain unique. If there are two
sites, users at both can enter new records and the
autonumber still has to be unique. If you have a standard
autonumber which is at 233 say, and a user at site1 enters
a new record, the automnumber will be 234. If a user at
site 2 enters a new record before you synchronise, that
record will also have an autonumber of 234. You then have
a problem when you synch as there are two records with the
autonumber of 234. When you replicate a Db, autonumber
changes from (usually) incrementing by 1 to generating a
number based on a number of factors which should guarantee
that it is unique.
Dave