turn off warning

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
 
F

fredg

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
 
Top