C Carnuss Guest Apr 26, 2007 #1 How do I hide prompts asking the user are they sure they want to update fields, etc?
ErikSnoek Programmer Local time Today, 11:36 Joined Apr 26, 2007 Messages 100 Apr 26, 2007 #2 Use this piece of code: Code: DoCmd.SetWarnings False Be sure to turn them back on again after executing your query. (with the same code, except True instead of False)
Use this piece of code: Code: DoCmd.SetWarnings False Be sure to turn them back on again after executing your query. (with the same code, except True instead of False)