turn off warning

  • Thread starter Thread starter Mark J Kubicki
  • Start date Start date
M

Mark J Kubicki

I have code which "inserts into" and / or "delete from" which operates fine;
but, I'd like to turn OFF the warnings "...about to append / delete #
records"

thought it might be:
application.alertwarnings = False (or something like this)

any thoughts?

thanks in advance,
mark
 
I have code which "inserts into" and / or "delete from" which operates fine;
but, I'd like to turn OFF the warnings "...about to append / delete #
records"

thought it might be:
application.alertwarnings = False (or something like this)

any thoughts?

thanks in advance,
mark

DoCmd.SetWarnings False
'Your action query here
DoCmd.SetWarnings True
 
Back
Top