When I use the “INSERT INTO” SQL statement in combination with DoCmd.RunSQL to add a row to a table, for each row I add, I get the confirmation prompt “You are about to append 1 row(s) … Are you sure you want to do this?”
How do you get rid of the prompt? I seem to remember you can do it, but I’ve not been able to find out how to do it. I don’t want the database users to have to respond Yes to every row insertion I need to perform.
I’m using the following INSERT INTO statement:
SQL1 = “INSERT INTO tblCylinders(SampleID, CylinderNumber) VALUES([SampleID],’A’);”
Thanks,
Jim.