Mar 21, 2003 #1 Max1mum2 Programmer Jan 30, 2003 13 US How could I do this without the : "You are about the append (x) Rows" Confirmation? DoCmd.RunSQL(SQL) THANKS IN ADVANCE - Maximum
How could I do this without the : "You are about the append (x) Rows" Confirmation? DoCmd.RunSQL(SQL) THANKS IN ADVANCE - Maximum
Mar 21, 2003 #2 evalesthy Programmer Oct 27, 2000 513 US Docmd.setwarnings False 'Your code here Docmd.setwarning True Note your error handling should also set warnings back to True in case you prematurely exit routine. Upvote 0 Downvote
Docmd.setwarnings False 'Your code here Docmd.setwarning True Note your error handling should also set warnings back to True in case you prematurely exit routine.
Mar 21, 2003 Thread starter #3 Max1mum2 Programmer Jan 30, 2003 13 US Thanks A lot! Upvote 0 Downvote