Hiding prompts

  • Thread starter Thread starter Carnuss
  • Start date Start date
C

Carnuss

Guest
How do I hide prompts asking the user are they sure they want to update fields, etc?
 
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)
 
Thank'n you.
 

Users who are viewing this thread

Back
Top Bottom