Typically when you want to insert a row into a table that has an autonumber (or identity in MSSQL) field, you need to omit that field name from your insert statement. Otherwise, you have to provide a value for the field which is where you are running into the problem.
-
Peter