Reset the AutoNumber seed value for the table.
For Access linked tables, a bug means that inserting to the Autonumber column resets the autonumber seed to the value following that inserted.
FixAutonumberCol() sets it back to MAX(autonumbercolumn) + 1
The table name
The DAO database to which the table belongs
Force the fix even for non linked tables (it could be that the table is linked to a remote database and we are repairing it locally.
FixAutonumberCol "tblProduct", dbs