I have never had any luck using parameters with Access in Ado.Net. It works nicely with SQL Server, but not Access, so when I write the query I just recreate the SQL string with the value inserted, not parameters.
e.g.
"INSERT INTO Table (Field1, Field2) VALUES (" & intField1Value &...